MATLAB: I have two array x=[1 6 8 9],y=[3 6 9 14],then i plot (x,y) in matlab. i have no linear equation of x,y. i have only above array of x and y. if value of x is 4 then what is the value of y.

arrayMATLAB

i have two array x=[1 6 8 9],y=[3 6 9 14],then i plot (x,y) in matlab. i have no linear equation of x,y. i have only above array of x and y. if value of x is 4 then what is the value of y.

Best Answer

x=[1 6 8 9]
y=[3 6 9 14]
x0=4
y0=interp1(x,y,x0)