0
我怎樣才能總結兩個不同時間指標的離散時間信號,即。在時間索引n1=-3:1
,和第二信號y=[1 1 2 2 3]
在時間索引n2=0:4
給定的第一信號x=[1 2 3 4 5]
。 由於長度不同,我不能只添加這兩個信號。到目前爲止,我的代碼是:如何繪製不同時間索引的兩個離散時間信號的總和?
n1=-3:1;
x=input('Enter the value of X:');
y=input('Enter the value of Y:');
subplot(3,1,1);
stem(n1,x);
grid on;
xlabel('Time index');
ylabel('Amplitude');
axis([-10 10 0 10]);
title('signal X');
n2=0:4;
subplot(3,1,2);
stem(n2,y);
grid on;
xlabel('Time index');
ylabel('Amplitude');
axis([-10 10 0 10]);
title('signal Y');
我應該怎麼做?我怎樣才能繼續添加這兩個信號?
你遇到成像的情況下,像N1 = 1:3,並且N2 = 0.5:3.5? – Tokkot