How can I extrapolate to higher values in Matlab?

2020-04-17 02:13发布

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?

2条回答
Juvenile、少年°
2楼-- · 2020-04-17 03:00

If its linear the code below solves this

clear all
close all

T=[0,100,300];
a=[2.8796,2.8785,2.886];
reg = polyfit(T,a,1);

figure
hold on
plot(T,a,'bx')
plot(T,reg(2)+T.*reg(1),'k-')
plot(600,reg(2)+600*reg(1),'ro')
plot(600,interp1(T,a,600,'linear','extrap'),'md')
legend('observations','lin. regression','pred. at 600p polyfit','pred. at 600p interp1')

val_polyfit = reg(2)+600*reg(1)
val_interp1 = interp1(T,a,600,'linear','extrap')
diff = val_polyfit/val_interp1

yields

val_polyfit =

    2.8924


val_interp1 =

    2.8972


diff =

    0.9983
查看更多
Bombasti
3楼-- · 2020-04-17 03:01

For Linear Interpolation: aextra = interp1(T,a,600,'linear','extrap')

查看更多
登录 后发表回答