华南理工大学信号与系统实验报告
Experiment Export
Name:
Student No:
Institute:
Dec 26, 2011
Experiment Purposes
1. Be familiar with the software Environment and Programming flow in MATLAB5.3.
2. Learn how to draw the signal waveform and determine the signal properties.
3. Calculate the convolution, frequency response and system output by using the functions: conv, freqz, freqs and filter.
Experiment Contents实验项目一:MATLAB编程基础及典型实例
①? ? 画出离散时间正弦信号并确定基波周期(注:pi? 表示圆周率)1? ? x1[n]=sin(pi*4/4)*cos(pi*n/4)2? ? x2[n]=cos(pi*n/4)*cos(pi*n/4)3? ? x3[n]=sin(pi*n/4)*cos(pi*n/8)
program for matlabn=0:31;x1=sin(pi*n/4).*cos(pi*n/4);x2=cos(pi*n/4).*cos(pi*n/4);x3=sin(pi*n/4).*cos(pi*n/8);subplot(3,1,1);stem(n,x1);title('x1');subplot(3,1,2);stem(n,x2);title('x2');subplot(3,1,3);stem(n,x3);title('x3');grid on;?

这篇华南理工大学的信号与系统实验报告详细探讨了MATLAB编程基础,包括绘制信号波形、确定信号属性以及计算卷积和系统特性。实验通过实例证明了y[n]=sin((pi/2)x[n])系统非线性,以及y[n]=x[n]+x[n+1]系统非因果性的事实,并展示了如何使用MATLAB进行相关计算和验证。
最低0.47元/天 解锁文章

被折叠的 条评论
为什么被折叠?



