Fit in matlab equations
古いコメントを表示
回答 (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;
1 件のコメント
Ede gerlderlands
2013 年 7 月 17 日
編集済み: Ede gerlderlands
2013 年 7 月 17 日
カテゴリ
ヘルプ センター および File Exchange で Least Squares についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!