How to find minimum and maximum of a fitted curve.??
21 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Chris Martin
il 29 Set 2014
Commentato: Jan Dabrowski
il 30 Nov 2020
I have fitter my time series using fourier option of fit command, I want to know how to find the minimum and maximum of the fitted curve
2 Commenti
Risposta accettata
Matt J
il 29 Set 2014
Modificato: Matt J
il 29 Set 2014
My approach would be to,
- Sample the curve finely (much higher sampling rate than the frequency of the fitted curve) and get approximate locations of the global max and min from the samples using the commands min() and max()
- Refine the approximation from Step 1 using fzero. That is, use fzero to find where the derivative of the fitted curve is zero, using the points from Step 1 as the intial guesses.
3 Commenti
Matt J
il 30 Set 2014
Modificato: Matt J
il 30 Set 2014
That's what my 2-step Answer told you how to do. Use feval in Step 1, or the other methods mentioned here,
to evaluate the curve at many points. When you have a vector of samples of hte curve, you can apply max() or min() to find approximate locations of the max and min. Then, in Step 2, you can refine with fzero, if you wish.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with Curve Fitting Toolbox in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!