I have the following data:
T=[0,100,300]
and
a=[2.8796,2.8785,2.886]
and I want to extrapolate and know what a
will I get at T=600
in Matlab.
How can I do that?
I have the following data:
T=[0,100,300]
and
a=[2.8796,2.8785,2.886]
and I want to extrapolate and know what a
will I get at T=600
in Matlab.
How can I do that?
If its linear the code below solves this
yields
For Linear Interpolation:
aextra = interp1(T,a,600,'linear','extrap')