Fit in matlab equations
2 ビュー (過去 30 日間)
古いコメントを表示
回答 (1 件)
Daniel Pereira
2013 年 7 月 17 日
Did you try
z = x^-3;
p = polyfit(z,y,1)
then
yy = p(1) * z + p(2);
which has the form
yy = a * x.^-3 + b;
参考
カテゴリ
Help Center および File Exchange で Linear and Nonlinear Regression についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!