信号与系统仿真试验报告
姓名:李耿学院:电气工程学院班级:四班学号:2013302540114
实验1:连续时间信号的表示及可视化 t)1.f(??(t)
t=-10:0.01:10; y=(t==0); plot(t,y); xlabel('t'); ylabel('f(t)');
2.
f(t)??(t)
t=-10:0.01:10; y=(t>=0); plot(t,y); xlabel('t'); ylabel('f(t)');
3.
f(t)?eat(分别取a?0及a?0);
t=-10:0.01:10; a1=1;
y1=exp(a1*t); subplot(1,2,1); plot(t,y1); xlabel('t'); ylabel('f(t)'); title('a=1'); a2=-1;
y2=exp(a2*t); subplot(1,2,2); plot(t,y2); xlabel('t'); ylabel('f(t)'); title('a=-1');
4.
f(t)?R(t)
t=-10:0.01:10; y=t.*heaviside(t); plot(t,y); xlabel('t'); ylabel('f(t)');
5.
f(t)?Sa(?t)
t=-10:0.01:10; y=sin(t)./t; plot(t,y); xlabel('t'); ylabel('f(t)');
6.
f(t)?Sin(2?ft)
x=-10:0.01:10; f1=0.1; f2=0.2; f3=0.5;
y1=sin(2*pi*f1*x); subplot(2,2,1); plot(x,y1); title('f=0.1');
y2=sin(2*pi*f2*x); subplot(2,2,2); plot(x,y2); title('f=0.2');
y3=sin(2*pi*f3*x); subplot(2,2,3); plot(x,y3); title('f=0.5'); xlabel('t');