how to curve fiting
1 回表示 (過去 30 日間)
古いコメントを表示
How can I enter data into a script to do curve fitting?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/462245/image.png)
0 件のコメント
回答 (1 件)
KALYAN ACHARJYA
2020 年 12 月 16 日
There is no description about the question. So I considered it as a sample example
x=(1:20)'; % Example Make column data
y=log(x);
fit_data=fit(x,y,'poly2')
plot(fit_data,x,y);
More details, please see fit
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Interpolation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!