フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How can I find a fit for my data?

1 回表示 (過去 30 日間)
fengsen huang
fengsen huang 2018 年 11 月 14 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
phi = [ones(size(x2)),x2,x2.^2,x2.^3,x2.^4];
aa = phi\y2;
yfit = phi*aa;
plot(x2,y2,'bx',x2,yfit,'k-')
grid on
s=sprintf('y=%8f+%8fx+%8fx^2+%8fx^3+%8fx^4',aa(1),aa(2),aa(3),aa(4),aa(5));
legend('data',s);
cc = corrcoef(y2,yfit);
so I plotted the datas and is shown in blue crosses but the fit I found in black line is not accurate enough, how can I increase my fit accuracy?
Also I plotted data3 on a graph and notice its a trignometric function. But I dont know how to find a fit for this kind of graph.

回答 (1 件)

Cris LaPierre
Cris LaPierre 2018 年 11 月 14 日
Consider exploring various fits using the curve fitting toolbox.
Also, there is a curve fitting app (if you have access to it).
curveFitting.png

この質問は閉じられています。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by