📄 hpimapfun.m
字号:
function zdot = hpimapfun(wp,yp,flag,scale,z,beta,c);
% Used by HPINVMAP for solution of an ODE.
% Copyright 1998 by Toby Driscoll.
% $Id: hpimapfun.m 103 2001-02-21 17:08:53Z driscoll $
lenyp = length(yp);
lenzp = lenyp/2;
% Don't allow points in lower half-plane. This really messes up the
% derivative calculation.
zp = yp(1:lenzp) + i*max(0,yp(lenzp+1:lenyp));
f = scale./hpderiv(zp,z,beta,c);
zdot = [real(f);imag(f)];
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -