📄 potplot.m
字号:
function potplot(vtx,srf,V);
%function potplot(vtx,srf,V)
%
%Animating the forward solution in 3D
%
%
%
%vtx = The vertices matrix
%srf = The boundary surfaces
%V = The forward solution
figure;
for i=1:size(V,2);
Vp = V(:,i);
trisurf(srf,vtx(:,1),vtx(:,2),vtx(:,3),Vp(1:size(vtx,1)));
shading interp;
daspect([1 1 1]);
view(3);
camzoom(1);
grid off
axis tight;
camlight left
lighting flat;
pause(0.2);
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This is part of the EIDORS suite.
% Copyright (c) N. Polydorides 2001
% Copying permitted under terms of GNU GPL
% See enclosed file gpl.html for details.
% EIDORS 3D version 1.0
% MATLAB version 5.3 R11
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -