x2lnx.m

来自「nonlinear eq routines in matlab」· M 代码 · 共 22 行

M
22
字号
function varargout = x2lnx(x)%% %%  [y]    = x2lnx(x)    returns the function value y = (x^2-1)^p ln(x)%  [y,yp] = x2lnx(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%global p% return the function valuevarargout{1} = (x.^2-1).^p .* log(x);if( nargout > 1 )  % return the derivative as the second argument  varargout{2} = 2*p*x.*(x.^2-1).^(p-1) .* log(x) + (x.^2-1).^p ./ x;end

⌨️ 快捷键说明

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