필터 지우기
필터 지우기

Best Fit Line for Parabola

조회 수: 66 (최근 30일)
Daniella Chait
Daniella Chait 2022년 9월 22일
편집: Torsten 2022년 9월 22일
I am trying to make a best fit line for a negative parabola, but when I use polyfit(x,y,2) and plot it I get the following image. Any tips?
  댓글 수: 1
Torsten
Torsten 2022년 9월 22일
편집: Torsten 2022년 9월 22일
You try to fit a parabola to only one (x,y) point.
If this is what you want, your curve is correct since it passes through the point with 0 magnets.

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

답변 (1개)

Star Strider
Star Strider 2022년 9월 22일
Try something like this —
x = [0; 0.019; 0.036];
y = [0.015; 0.25; 0.05];
p = polyfit(x, y, 2)
p = 1×3
-670.3646 25.1053 0.0150
xv = linspace(min(x), max(x));
yv = polyval(p,xv);
figure
plot(x, y, 'o')
hold on
plot(xv, yv, '-r')
hold off
xlabel('x')
ylabel('y')
.

카테고리

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

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by