【信号与系统】连续时间信号与系统的时域分析

(1)典型连续信号的上机实现

实指数的实现:

t=-2:0.0001:2;
xt1=2*exp(2*t);
plot(t,xt1)
xlabel('t')
ylabel('x(t)')
title('实指数信号')

在这里插入图片描述

(2)连续时间信号基本运算的实现

t=-2:0.0001:2;
xt=2*exp(2*t);
figure
subplot(221)
plot(t,xt)
grid on
title('x(t)');
subplot(222)
plot(-t,xt)
grid on
title('x(-t)');
subplot(223);
plot(-t+3,xt)
grid on
title('x(-t+3)');
subplot(224);
plot(0.5*(-t+3),xt)
grid on
title('x(-2t+3)');

在这里插入图片描述

(3)求如下系统的冲激响应和阶跃响应

在这里插入图片描述

a=[7,4,6];
b=[1,1];
subplot(211)
impulse(b,a);
subplot(212)
step(b,a)

在这里插入图片描述

(4)求如下卷积

在这里插入图片描述

t=-1:0.01:5;
f1=exp(-t).*(t>0)
f2=exp(-t).*(t>0)
f3=conv(f1,f2);f3=f3*0.01;
k=2*length(t)-1;
k3=linspace(2*t(1),2*t(end),k);
subplot(2,2,1)
plot(t,f1);
title('f1(t)')
xlabel('t')
ylabel('f1(t)')
subplot(2,2,2)
plot(t,f2)
title('f2(t)')
xlabel('t')
ylabel('f2(t)')
subplot(2,2,3)
plot(k3,f3);
h=get(gca,'position');
h(3)=2.5*h(3);
set(gca,'position',h);
title('f(t)=f1(t)*f2(t)');
xlabel('t');
ylabel('f(t)');

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

沅_Yuan

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值