📄 plotedge.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -