How to use harmonic fitting method
30 次查看(过去 30 天)
显示 更早的评论
Hi,
Please, how can I use Harmonic fiting for the attached data to get a smooth fit.
5 个评论
采纳的回答
Sam Chak
2023-9-20
I'm interpreting your 'Harmonic' model as the 'Sum of Sine' model. If this is not the case, then you will need to create a custom nonlinear model that suits the name "Harmonic" using the fittype() function.
y = load('darta1.txt');
x = linspace(10, 60, numel(y));
[f, gof] = fit(x', y, 'sin3')
plot(f, x, y), grid on,
legend('data', 'Sum of Sine (type-3)', 'location', 'best')
更多回答(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!