How to use harmonic fitting method
30 views (last 30 days)
Show older comments
Hi,
Please, how can I use Harmonic fiting for the attached data to get a smooth fit.
5 Comments
Accepted Answer
Sam Chak
on 20 Sep 2023
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')
More Answers (0)
See Also
Categories
Find more on Get Started with Curve Fitting Toolbox 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!