Function lsqnonlin() has no optimization effect
6 ビュー (過去 30 日間)
古いコメントを表示

It is a teaching example, but I can't get the right answer in my software. How can I solve this problem?


4 件のコメント
回答 (1 件)
Matt J
2020 年 5 月 18 日
And I have another question. My code has no optimization effect
In this case, your initial guess already is optimal. You can see this by solving for the optimum x analytically, which is possible in this case because your model is linear, and because you have no bound constraints:
a=log(PNO(:));
b=log(PO2(:));
y=log(rNO(:));
x=[ones(size(a)),a,b]\y(:)
x =
-16.8802
1.2008
0.4151
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!