⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 coscosh.m

📁 nonlinear eq routines in matlab
💻 M
字号:
function varargout = coscosh(x)%% %%  [y]    = coscosh(x)  returns the function value in y%  [y,yp] = coscosh(x)  returns the function value in y and %                       the derivative in yp%%  Matthias Heinkenschloss%  Department of Computational and Applied Mathematics%  Rice University%  March 29, 2001%% return the function valuevarargout{1} = cos(x)*cosh(x)+1;if( nargout > 1 )  % return the derivative as the second argument  varargout{2} = -sin(x)*cosh(x)+cos(x)*sinh(x);end

⌨️ 快捷键说明

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