findnode.m
来自「五点差分型多重网格方法:各种插值算子的比较)」· M 代码 · 共 18 行
M
18 行
function findnode(node,i)% FINDNODE highlights the i-th node%% USAGE% findnode(node,i)%% INPUT % node: coordinate array of all nodes% i: index of the node you want to highlight%% L. Chen & C. Zhang 10-11-2006hold onN=size(node,1);if (i<1) || (i>N), fprintf('is not a valide node index'); endtext(node(i,1)+0.01,node(i,2)+0.01, int2str(i));plot(node(i,1),node(i,2), 'r.', 'MarkerSize', 18);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?