内容发布更新时间 : 2025/1/4 12:52:37星期一 下面是文章的全部内容请认真阅读。
专业资料
2连续时间信号在MATLAB中的表示
2-1.利用MATLAB命令画出下列连续信号的波形图
(1)
>> t=0:0.01:3;
>> ft=2*cos(3*t+pi/4); >> plot(t,ft),grid on; >> axis([0 3 -2.2 2.2]); >> title('2cos(3t+pi/4)')
(2)
>> t=0:0.01:3; >> ft=2-exp(-t);
>> plot(t,ft),grid on;
>> title('(2-exp(-t))u(t)')
word完美格式
专业资料
(3)
>> t=-1:0.01:1;
>> ft=t.*(uCT(t)-uCT(t-1)); >> plot(t,ft),grid on >> axis([-1 1 -0.2 1.2]); >> title('t[u(t)-u(t-1)]')
(4)
>> t=-1:0.01:3;
>> ft=(1+cos(pi*t)).*(uCT(t)-uCT(t-2)); >> plot(t,ft),grid on >> axis([-1 3 -0.2 2.2]);
>> title('[1+cos(pi*t)][u(t)-u(t-2)]')
word完美格式
专业资料
2-2.利用MATLAB命令画出下列复信号的实部、虚部、模和辐角
(1)
>> t=0:0.01:3;
>> ft=2+exp(i*(pi/4)*t)+exp(i*(pi/2)*t);
>> subplot(2,2,1);plot(t,real(ft));title('实部');axis([0 3 0 4]);grid on; >> subplot(2,2,2);plot(t,imag(ft));title('虚部');axis([0 3 0 2]);grid on; >> subplot(2,2,3);plot(t,abs(ft));title('模');axis([0 3 0 4]);grid on; >> subplot(2,2,4);plot(t,angle(ft));title('相角');axis([0 3 0 2]);grid on;
(2)
t=0:0.01:3;
>> ft=2*exp(i*(t+pi/4));
>> subplot(2,2,1);plot(t,real(ft));title('实部');axis([0 3 0 2]);grid on; >> subplot(2,2,2);plot(t,imag(ft));title('虚部');axis([0 3 0 2]);grid on;
word完美格式