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

📄 potplot.sci

📁 用来实现三维阻抗及光学断层成像重建的matlab程序
💻 SCI
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -