Is the 8th term maximum in the curve fitting toolbox and command line?
1 ビュー (過去 30 日間)
表示 古いコメント
It seems to apply up to 9th term with a simple command line input.
From 'sin10', it is recognized as 3D. is there any other way?
I hope for your answer. thank you.
F = fix(x,y,'sin9')
plot(F,x,y)
0 件のコメント
回答 (2 件)
Matt J
2022 年 5 月 23 日
You will probably have to use a custom model, or else resort to lsqcurvefit().
4 件のコメント
Matt J
2022 年 5 月 23 日
編集済み: Matt J
2022 年 5 月 23 日
For a startpoint, perhaps do a non-custom 'sin8' fit to estimate the first 24 parameters. Subtract the sin8 fit from the measured curve samples to obtain a a modified set of curve samples to which you would do a non-custom 'sin2' fit to estimate the remaining parameters.
F=fit(x,y,'sin8');
dy=y-F(x);
dF=fit(x,dy,'sin2');
startpoint=[coeffvalues(F),coeffvalues(dF)]; %startpoint for custom sin10 fit
Matt J
2022 年 5 月 23 日
Perhaps just do an FFT decomposition and select the 10 strongest frequencies.
0 件のコメント
参考
カテゴリ
Find more on Interpolation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!