如何外推一维线性调频信号?

时间:2018-09-25 17:58:13

标签: matlab signal-processing extrapolation

past question之后,我想像下面这样推断一个信号:(红色是信号,蓝色是推断的)

t1 = 0:0.1:30;
t2 = 0:0.1:40;
s = @(t) sin(0.2*t)+sin(0.5*t+0.05*t.^2); 
figure;
plot(t2,s(t2)); hold on
plot(t1,s(t1));

enter image description here

线性预测编码或AR Burg方法在这里不合适。 你怎么推断呢?

0 个答案:

没有答案