⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 drsp.m

📁 经典《信号与系统》教程的matlab例程,对深入理解信号与系统相关概念有很大帮助
💻 M
字号:
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]')

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -