Sinusoidal fit with fixed points
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Is there a way to fit a sine curve to some data points but hold some of the fitted points at known locations? I'm trying to hold the extrema constant because they are known points but the rest of the fit can be anything.
2 Commenti
Matt J
il 19 Gen 2015
The location of the extrema determine everything about a sine curve: frequency, amplitude, and phase. There's nothing left to fit.
Risposta accettata
Matt J
il 22 Gen 2015
Modificato: Matt J
il 22 Gen 2015
If the unknown curve is given by y=F(x,p) where p is the vector of unknown parameters, and x and y are vectors of curve samples, then fmincon could be used to estimate p, with a sufficiently good initial guess p0,
p_fit = fmincon(@(p) norm(F(xdata,p) - ydata)^2, p0, [],[],[],[],[],[],...
@(p) F(xfixed,p)-yfixed, options)
where xfixed and yfixed are the x,y pairs that you want constrained. Then, of course, you get the curve with
y_fit=F(xdata,p_fit);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Fit Postprocessing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!