Fit in matlab equations

조회 수: 2 (최근 30일)
Ede gerlderlands
Ede gerlderlands 2013년 7월 17일
How can I fir cube equation in matlab

답변 (1개)

Daniel Pereira
Daniel Pereira 2013년 7월 17일
Did you try
z = x^-3;
p = polyfit(z,y,1)
then
yy = p(1) * z + p(2);
which has the form
yy = a * x.^-3 + b;
  댓글 수: 1
Ede gerlderlands
Ede gerlderlands 2013년 7월 17일
편집: Ede gerlderlands 2013년 7월 17일
I modified my question as per your suggestion. There are issues I mentioned in the questions. Thank you

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by