?? fempostplot.m
字號:
function [] = femPostPlot(femsol,filename)
N=size(femsol,2);
for n=1:N
fem=femsol(n);
postplot(fem, ...
'tridata',{'Hz','cont','internal','unit','A/m'}, ...
'trimap','jet(1024)', ...
'title',['Surface: mag. field Hz [A/m] iter=' num2str(n)], ...
'axis',[-2E-6,2E-6,-2E-6,2E-6]);
if (~isempty(filename))
saveas(gcf,[filename num2str(n) '.png']);
end
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -