标签: matlab sas levenberg-marquardt
我正在尝试将脚本从Matlab移至SAS IML。 我做到了,它显然起作用了,但是在功能上我得到了不同的结果:
Matlab
x = lsqcurvefit(f, p, GC, DD');
SAS:
/* fun=f-dd and GC already set as parameter in fun.*/ CALL NLPLM (rc, xr, "fun", p, opt);
它们等效吗?根据文档看来,是这样。
非常感谢。