连载106:傅立叶变换的对称性(二)


连载107:傅立叶变换的对称性(三)



连载108:序列的卷积


连载109:序列的卷积计算过程













连载110:利用matlab计算序列的卷积


% x(n)
>> subplot(3,1,1);
>> n=0:1:6;
>> x=1 1.2 0.8 -0.7 -0.5 0.4 1.4;
>> stem(n,x);
>> xlabel('n');ylabel('x');title('x(n) ');
>> axis(-12 12 -2.5 2.5);
% h(n)
>> subplot(3,1,2);
>> h=1 0.8 -0.5 -0.3;
>> n=0:1:3;
>> stem(n,h)
>> xlabel('n');ylabel('h');title('h(n) ');
>> axis(-12 12 -2.5 2.5);
% x(n)*h(n)
>> subplot(3,1,3);
>> y=conv(x,h);
>> n=0:1:9;
>> stem(n,y)
>> xlabel('n');ylabel('y');title('y(n)=x(n)*h(n) ');
>> axis(-12 12 -2.5 2.5);