prevertex.m
来自「computation of conformal maps to polygon」· M 代码 · 共 14 行
M
14 行
function z = prevertex(M)
%PREVERTEX Extract a vector of the prevertices of an S-C map.
% Copyright 1998 by Toby Driscoll.
% $Id: prevertex.m 23 1998-05-13 23:29:29Z tad $
tmp = parameters(M);
if strmatch('prevertex',fieldnames(tmp))
z = tmp.prevertex;
else
msg = sprintf('Prevertices not defined for map of class %s\n',class(M));
error(msg)
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?