How to find minimum and maximum of a fitted curve.??
20 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Matt J
2014 年 9 月 29 日
編集済み: Matt J
2014 年 9 月 29 日
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 件のコメント
Matt J
2014 年 9 月 30 日
編集済み: Matt J
2014 年 9 月 30 日
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.
その他の回答 (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!