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

📄 zy65.m

📁 电路与系统专业的matlab程序。有很多经典的实例。
💻 M
字号:
% 两个门函数的卷积
t1=1:0.01:2;
f1=ones(size(t1)).*(t1>=1);
t2=2:0.01:3;
f2=ones(size(t2)).*(t2>=2);
f=conv(f1,f2);
t3=3:0.01:5;
subplot(3,1,1),plot(t1,f1);axis([0.8,2.2,0,1.2])
subplot(3,1,2),plot(t2,f2);axis([1.8,3.2,0,1.2])
subplot(3,1,3),plot(t3,f);

⌨️ 快捷键说明

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