homework8.m
来自「信号与系统分析以matlab实现」· M 代码 · 共 15 行
M
15 行
t=[0:0.001:31];
y1=sin(pi*t/4).*cos(pi*t/4);
y2=cos(pi*t/4).*cos(pi*t/4);
y3=sin(pi*t/4).*cos(pi*t/8);
y4=sin(pi*t/4).*cos(pi*t/4)+cos(pi*t/4).*cos(pi*t/4);
subplot(3,1,1);
plot(t,y1,'r');
subplot(3,1,2);
plot(t,y2,'r');
subplot(3,1,3);
plot(t,y3,'b');
figure(2);
plot(t,y4,'r');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?