Evaluating polynomial at a certain x point to find y?

조회 수: 4 (최근 30일)
Emanuele Joy
Emanuele Joy 2018년 5월 15일
답변: Torsten 2018년 5월 15일
Hi all, so I have a script that evaluates the 1st through 4th degree polynomials of a given dataset of volume of liquid vs vol. of ice. I already did everything and plotted it just fine, the only thing I want to do is evaluate it for when x = 1.5 (vol. of liquid) for the 4th degree polynomial.
What I wanted/tried to do is just evaluate the anonymous function, but it's within the for-loop and I don't know to pull the 4th iteration so I can evaluate it at 1.5. Any tips?

채택된 답변

KSSV
KSSV 2018년 5월 15일
As you have (x,y) data in hand....you can use interpolation. Read about interp1.
iwant = interp1(x,y,1.5) ;

추가 답변 (2개)

Torsten
Torsten 2018년 5월 15일
coeff{i} = polyfit(volHotLiq, volIce, i);
if i==4
p_15 = polyval(coeff{i},1.5);
end

Emanuele Joy
Emanuele Joy 2018년 5월 15일
You're golden. I keep forgetting when to use the interp1 function. Thank you so much!

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by