ztripuls.m

来自「用MATLAB实现数字信号处理的程序」· M 代码 · 共 9 行

M
9
字号
%所指定的非周期三角波
t=0:0.01:1;
x1=tripuls(t,0.8);
x2=tripuls(t,0.4);
subplot(2,1,1),
plot(t,x1);
subplot(2,1,2),
plot(t,x2);

⌨️ 快捷键说明

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