How do I get A and B fitting coefficients after fitting a power law curve using fit function
조회 수: 4 (최근 30일)
이전 댓글 표시
Hi I am trying to extract fitting coefficient from f.
x=[100,200,300,400,500,600,700,800]';
y=[5, 14, 16, 17, 18,19, 21, 22]';
f=fit(x,y, 'power1');
f is something like this:
f =
General model Power1:
f(x) = a*x^b
Coefficients (with 95% confidence bounds):
a = 0.9937 (-0.2434, 2.231)
b = 0.467 (0.268, 0.666)
I need to extract this a and b value. How can I get that?
Thanks.
댓글 수: 0
답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Linear and Nonlinear Regression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!