MATLAB: Evaluating polynomial at a certain x point to find y

anonanonymous functionfittingfor looppolyfitpolynomialpolyval

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?

Best Answer

As you have (x,y) data in hand....you can use interpolation. Read about interp1.
iwant = interp1(x,y,1.5) ;
Related Question