rimapfun.m

来自「computation of conformal maps to polygon」· M 代码 · 共 13 行

M
13
字号
function zdot = rimapfun(wp,yp,flag,scale,z,beta,c,zs,L);
%   Used by RINVMAP for solution of an ODE.

%   Copyright 1998 by Toby Driscoll.
%   $Id: rimapfun.m 9 1998-05-10 04:55:10Z tad $

lenyp = length(yp);
lenzp = lenyp/2;
zp = yp(1:lenzp) + i*yp(lenzp+1:lenyp);

f = scale./rderiv(zp,z,beta,c,L,zs);
zdot = [real(f);imag(f)];

⌨️ 快捷键说明

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