Fitting with constrained coefficients
4 ビュー (過去 30 日間)
古いコメントを表示
Hi everyone!
I created a fittype object, but I want to impose constrained coefficients and fixed value, for example:
L0 = 1;
up = 1;
ft1 = fittype(@(K,Cb,b,x) up*K^Cb*x + L0*(exp(x)-1).^b, 'independent','x');
where K>0, Cb>0. How can I impose this? Is the code right for fixed values (L0 e up)?
Thanks a lot in advance. Pinco
0 件のコメント
回答 (1 件)
José-Luis
2012 年 8 月 18 日
You might want to have a look at: fminsearchbnd, that you can find in the file exchange :
Cheers!
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with Curve Fitting Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!