potplot.sci
来自「用来实现三维阻抗及光学断层成像重建的matlab程序」· SCI 代码 · 共 63 行
SCI
63 行
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 solutionxset('window',max(winsid()+1))max(winsid());for i = 1:size(V,2) Vp = V(:,i); //!! Unknown function trisurf ,the original calling sequence is used trisurf(srf,vtx(:,1),vtx(:,2),vtx(:,3),Vp(1:size(vtx,1))); //!! Unknown function shading ,the original calling sequence is used shading('interp'); //!! Unknown function daspect ,the original calling sequence is used daspect([1,1,1]); //!! Unknown function view ,the original calling sequence is used view(3); //!! Unknown function camzoom ,the original calling sequence is used camzoom(1); //!! Unknown function grid ,the original calling sequence is used grid('off'); //!! Unknown function axis ,the original calling sequence is used axis('tight'); //!! Unknown function camlight ,the original calling sequence is used camlight('left'); //!! Unknown function lighting ,the original calling sequence is used lighting('flat'); xpause(1000*(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 + =
减小字号Ctrl + -
显示快捷键?