필터 지우기
필터 지우기

How to find minimum and maximum of a fitted curve.??

조회 수: 16 (최근 30일)
Chris Martin
Chris Martin 2014년 9월 29일
댓글: Jan Dabrowski 2020년 11월 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
Matt J 2014년 9월 29일
편집: Matt J 2014년 9월 29일
You have many open threads on your profile, many of which have had responses. You should consider closing some of them unless the answers given there really didn't help you. It's hard to imagine though, that so many answers were ineffective.
Chris Martin
Chris Martin 2014년 11월 13일
편집: Chris Martin 2014년 11월 13일
If the answer is not suitable then what can I do..

댓글을 달려면 로그인하십시오.

채택된 답변

Matt J
Matt J 2014년 9월 29일
편집: Matt J 2014년 9월 29일
My approach would be to,
  1. 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()
  2. 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
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.
Jan Dabrowski
Jan Dabrowski 2020년 11월 30일
Thanks man, you helped me a lot!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interpolation에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by