I have a set of experimental data in form of a parameter as a function of the other, keeping certain conditions constant. How do I know the best curve that fits the data?
2 ビュー (過去 30 日間)
古いコメントを表示
I'm new to MATLAB. I already used excel to check what fit is best for the data. Exponential and Polynomial seem to be better than linear fit. Is there a way I can use MATLAB to know which one is perfect for my data? Any code or tips?
0 件のコメント
回答 (1 件)
darova
2021 年 9 月 14 日
Use fit
x = 0:0.1:2;
y = x.^2 + 0.2*rand(size(x));
f = fit(x(:),y(:),'poly2');
plot(x,y,'.r')
line(x,f(x))
legend('original data','fitted function')
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!