⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 emptysrf.m

📁 toolbox of BVQX, This is the access between BV and matlab. It will help you to analysis data from BV
💻 M
字号:
function esrf = emptysrf
% emptysrf  - create an empty surface container
%
% FORMAT:       esrf = emptysrf;
%
% Output Fields:
%
%       esrf        SRF object without any content

% Version:  v0.7b
% Build:    7082916
% Date:     Aug-29 2007, 4:07 PM CEST
% Author:   Jochen Weber, Brain Innovation, B.V., Maastricht, NL
% URL/Info: http://wiki.brainvoyager.com/BVQXtools

% no arguments, start directly
esrf = bless(BVQXfile('new:srf'), 1);
esrf.NrOfVertices = 0;
esrf.NrOfTriangles = 0;
esrf.VertexCoordinate = zeros(0, 3);
esrf.VertexNormal = zeros(0, 3);
esrf.VertexColor= zeros(0, 4);
esrf.Neighbors = cell(0, 2);
esrf.TriangleVertex = zeros(0, 3);
esrf.NrOfTriangleStrips = 0;
esrf.TriangleStripSequence = zeros(0, 1);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -