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

📄 plotitmod.m

📁 解决麦克斯韦的matlab源文件
💻 M
字号:
function F = plotitmod(mesh,ev,nv,t,figno)% Plot the modules of the leapfrog iterates%% mesh -> 2D triangulation% ne -> vector of edge dofs of length #of active edges% nv -> vector of nodal dofs of length #of active verticesevf = zeros(mesh.Ne,1);nvf = zeros(2*mesh.Nv,1);evf(Eactidx(mesh)) = ev;nvf(Nactidx(mesh)) = nv;en = edge2vertex(mesh,evf);s = sprintf('time = %f',t);figure(figno); clf;subplot(1,2,1);plotmod(mesh,en,['Edge elements, ', s]);view([-30 60]);subplot(1,2,2);plotmod(mesh,nvf,['Nodal elements, ', s]);view([-30 60]);drawnow;

⌨️ 快捷键说明

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