leshyboy 发表于 2006-9-18 11:02

关于雅克比矩阵

请问:在求解非线性方程组的函数fsolve中,经常出现的那个Jacobian Matrix是什么意思啊?

zhangchuan 发表于 2006-9-18 12:41

在:数值计算MATLAB版本上有很好的例子

AaronSpark 发表于 2006-9-19 02:28

你说的是不是这个问题?

         % Not using 'JacobMult' so Jacobian must be correct size
         if Jrows~=nfun | Jcols ~=numberOfVariables
            errstr = sprintf('%s\n%s%d%s%d\n',...
               'User-defined Jacobian is not the correct size:',...
               '    the Jacobian matrix should be ',nfun,'-by-',numberOfVariables);
            error(errstr);
         end
页: [1]
查看完整版本: 关于雅克比矩阵