plotedge.m
来自「五点差分型多重网格方法:各种插值算子的比较)」· M 代码 · 共 18 行
M
18 行
function plotedge(node,edge)% PLOTEDGE shows the index of each edge on the current mesh plot%% USAGE% plotedge(node,edge)%% INPUT % node: coordinate array of all nodes% edge: edges %% L. Chen & C. Zhang 10-11-2006hold onfor i=1:size(edge,1) mid=mean(node(edge(i,:),:)); % Compute centroids text(mid(1),mid(2),int2str(i));end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?