필터 지우기
필터 지우기

Workaround on curvefit limitation

조회 수: 2 (최근 30일)
Sergio
Sergio 2020년 10월 27일
댓글: Sergio 2020년 10월 27일
Hello,
Is there any workaround to fit a function using the fit command without the limitation of 8 coefficients (considering the sum of sines or Fourier, specifically)?
Examples: model = fit(x,y,’sin10’) or model2 = (x,y,’fourier11’).
Thanks in advance.

채택된 답변

Steven Lord
Steven Lord 2020년 10월 27일
The built-in library of fits only contains sum of sines and Fourier fits up to sin8 and fourier8. If appropriate you could write your own custom fit using the fittype function, but keep in mind the advice from Jeff Goldblum's character in Jurassic Park: "Your scientists were so preoccupied with whether they could that they didn’t stop to think if they should."
Don't fit a sum of 30 sine functions (for example) just because you can, ask yourself if fitting a sum of 30 sine functions is a reasonable thing to do based on the problem you're trying to solve.
  댓글 수: 1
Sergio
Sergio 2020년 10월 27일
Dear Steven,
Thanks for the answer and the witty quote :D.
In my case, I really should do this.
Best

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

추가 답변 (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