不高深,你可以在matlab里跑下面代码看看,filter(h,1,signal)就相当于卷积
clear;clc;
signal = randn(32,1);
h = [1 0.2 0.5 0.2 1];
signal_afterCov = filter(h,1,signal);
signal_afterDeCov = filter(1,h,signal_afterCov);
figure(1);
subplot(3,1,1);plot(signal);title('original data');
subplot(3,1,2);plot(signal_afterCov);title('data after conv');
subplot(3,1,3);plot(signal_afterDeCov);title('data after de-conv');
【 在 xheliu 的大作中提到: 】
: 你这理论太高深。我这只有两个数值序列,实数字。
: 输出y(n),系统响应h(n),求输入信号x(n)
:
--
FROM 192.55.55.*