How to use harmonic fitting method
30 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
Please, how can I use Harmonic fiting for the attached data to get a smooth fit.
5 Kommentare
Akzeptierte Antwort
Sam Chak
am 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')
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with Curve Fitting Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!