?? drsp.m
字號(hào):
a=input('Type in the left coefficient vector:');
b=input('Type in the right coefficient vector:');
n=input('Type in the range of index n:');
x=input('Type in the expression of input sequence x[n]:');
y=filter(b,a,x);
subplot(2,1,1)
stem(n,x);title('The input sequence x[n]')
subplot(2,1,2)
stem(n,y);title('The output sequence y[n]')
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -