?? 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)];
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -