?? kepler.m
字號(hào):
function varargout = kepler_f(E)%% %% [y] = kepler(E) returns the function value y= M - E + e sin(E),% [y,yp] = kepler(E) returns the function value in y and % the derivative in yp%% Matthias Heinkenschloss% Department of Computational and Applied Mathematics% Rice University% March 29, 2001%M = 1;e = 0.5;% return the function valuevarargout{1} = M - E + e*sin(E);if( nargout > 1 ) % return the derivative as the second argument varargout{2} = -1 + e*cos(E);end
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -