MATLAB周期信号的频谱分析解读
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
MATLAB在信号与系统课程中的应用
EE of BUPT
MATLAB实现
% Fourier analysis % square_wave1.m t=0:0.01:2*pi; y=sin(t);y=y*4/pi;plot(t,y);pause y=sin(t)+sin(3*t)/3;y=y*4/pi;plot(t,y);pause y=sin(t)+sin(3*t)/3+sin(5*t)/5+sin(7*t)/7+sin(9*t)/9; y=y*4/pi; plot(t,y);pause
T 2 T 2
mn mn mn mn
EE of BUPT
MATLAB在信号与系统课程中的应用
级数形式
2 周期信号 f t , 周期为T1 , 基波角频率为 1 T1 在满足狄氏条件时,可展成
f ( t ) a 0 a n cosn 1 t bn sinn 1 t
第七章 周期信号的频谱分析
尹霄丽
Electronic Engineer School of BUPT
7.1 引言
成谐波关系的信号就是它们的频率互成整数倍的信号, 连续时间傅里叶级数将周期信号表示成成谐波关系的信号 的加权和。
本章主要内容:
•周期信号的傅里叶级数的系数:三角函数形式; 指数函数形式; •用数值计算的方式来综合信号; •用符号函数表示傅里叶级数。
MATLAB在信号与系统课程中的应用
EE of BUPT
绘制三维曲线图
MESH 3-D mesh surface. MESH(X,Y,Z,C) plots the colored parametric mesh defined by four matrix arguments. The view point is specified by VIEW. The axis labels are determined by the range of X, Y and Z, or by the current setting of AXIS. The color scaling is determined by the range of C, or by the current setting of CAXIS. The scaled color values are used as indices into the current COLORMAP.
MESH(X,Y,Z) uses C = Z, so color is proportional to mesh height.
MATLAB在信号与系统课程中的应用
EE of BUPT
help pause
PAUSE Wait for user response. PAUSE(n) pauses for n seconds before continuing, where n can also be a fraction. The resolution of the clock is platform specific. Fractional pauses of 0.01 seconds should be supported on most platforms.
PAUSE causes a procedure to stop and wait for the user to strike any key before continuing.
MATLAB在信号与系统课程中的应用
EE of BUPT
结果显示
1.5
1
0.5
0
-0.5
-1
-Biblioteka Baidu.5
0
1
2
3
4
5
6
7
n 1
1
称为三角形式的傅里叶级数,其系数
1 t 0 T1 a0 f (t ) d t 直流分量 t T1 0 2 t 0 T1 余弦分量的幅度 a n T t0 f ( t ) cosn1t d t 1 2 t 0 T1 正弦分量的幅度 bn T t0 f ( t ) sinn1t d t 1
MATLAB在信号与系统课程中的应用
EE of BUPT
余弦形式
f ( t ) a0 a n cos n1 t bn sin n1 t
n 1
1 2
f ( t ) c0 cn cos n1 t n
n 1
c0 c n cosn 1 t cos n sinn 1 t sin n
n 1
a0 : 直流, 平均值 n1 n 基波 (fundament al signal) 有的文献上也称为 1 次谐波 n次谐波 (harmonic signal)
EE of BUPT
MATLAB在信号与系统课程中的应用
例7-1 周期矩形脉冲信号的频谱
直流为0 x t 奇函数 余弦项的系数为0, 1 a 0 n t 2 3 4 0 2 1 1 1 T 4 bn 1 sin n1tdt T 0 n 2,4,6 0 2 奇谐函数 1 cos n1 4 n n 1,3,5 n 4 1 1 x t sin t sin 3t sin 2k 1 t , k 1,2 3 2k 1
MATLAB在信号与系统课程中的应用
EE of BUPT
7.2 三角函数形式的傅里叶级数
1.三角函数集
cosn 1t , sinn 1t 是一个完备的正交函数集
由积分可知
t在一个周期内,n=0,1,...
cos n1 t sin m1 dt 0 T T , 2 T2 cos n1t cos m1t dt 2 0, T T , 2 T2 sin n1t sin m1t dt 2 0,
EE of BUPT
MATLAB实现
% Fourier analysis % square_wave1.m t=0:0.01:2*pi; y=sin(t);y=y*4/pi;plot(t,y);pause y=sin(t)+sin(3*t)/3;y=y*4/pi;plot(t,y);pause y=sin(t)+sin(3*t)/3+sin(5*t)/5+sin(7*t)/7+sin(9*t)/9; y=y*4/pi; plot(t,y);pause
T 2 T 2
mn mn mn mn
EE of BUPT
MATLAB在信号与系统课程中的应用
级数形式
2 周期信号 f t , 周期为T1 , 基波角频率为 1 T1 在满足狄氏条件时,可展成
f ( t ) a 0 a n cosn 1 t bn sinn 1 t
第七章 周期信号的频谱分析
尹霄丽
Electronic Engineer School of BUPT
7.1 引言
成谐波关系的信号就是它们的频率互成整数倍的信号, 连续时间傅里叶级数将周期信号表示成成谐波关系的信号 的加权和。
本章主要内容:
•周期信号的傅里叶级数的系数:三角函数形式; 指数函数形式; •用数值计算的方式来综合信号; •用符号函数表示傅里叶级数。
MATLAB在信号与系统课程中的应用
EE of BUPT
绘制三维曲线图
MESH 3-D mesh surface. MESH(X,Y,Z,C) plots the colored parametric mesh defined by four matrix arguments. The view point is specified by VIEW. The axis labels are determined by the range of X, Y and Z, or by the current setting of AXIS. The color scaling is determined by the range of C, or by the current setting of CAXIS. The scaled color values are used as indices into the current COLORMAP.
MESH(X,Y,Z) uses C = Z, so color is proportional to mesh height.
MATLAB在信号与系统课程中的应用
EE of BUPT
help pause
PAUSE Wait for user response. PAUSE(n) pauses for n seconds before continuing, where n can also be a fraction. The resolution of the clock is platform specific. Fractional pauses of 0.01 seconds should be supported on most platforms.
PAUSE causes a procedure to stop and wait for the user to strike any key before continuing.
MATLAB在信号与系统课程中的应用
EE of BUPT
结果显示
1.5
1
0.5
0
-0.5
-1
-Biblioteka Baidu.5
0
1
2
3
4
5
6
7
n 1
1
称为三角形式的傅里叶级数,其系数
1 t 0 T1 a0 f (t ) d t 直流分量 t T1 0 2 t 0 T1 余弦分量的幅度 a n T t0 f ( t ) cosn1t d t 1 2 t 0 T1 正弦分量的幅度 bn T t0 f ( t ) sinn1t d t 1
MATLAB在信号与系统课程中的应用
EE of BUPT
余弦形式
f ( t ) a0 a n cos n1 t bn sin n1 t
n 1
1 2
f ( t ) c0 cn cos n1 t n
n 1
c0 c n cosn 1 t cos n sinn 1 t sin n
n 1
a0 : 直流, 平均值 n1 n 基波 (fundament al signal) 有的文献上也称为 1 次谐波 n次谐波 (harmonic signal)
EE of BUPT
MATLAB在信号与系统课程中的应用
例7-1 周期矩形脉冲信号的频谱
直流为0 x t 奇函数 余弦项的系数为0, 1 a 0 n t 2 3 4 0 2 1 1 1 T 4 bn 1 sin n1tdt T 0 n 2,4,6 0 2 奇谐函数 1 cos n1 4 n n 1,3,5 n 4 1 1 x t sin t sin 3t sin 2k 1 t , k 1,2 3 2k 1
MATLAB在信号与系统课程中的应用
EE of BUPT
7.2 三角函数形式的傅里叶级数
1.三角函数集
cosn 1t , sinn 1t 是一个完备的正交函数集
由积分可知
t在一个周期内,n=0,1,...
cos n1 t sin m1 dt 0 T T , 2 T2 cos n1t cos m1t dt 2 0, T T , 2 T2 sin n1t sin m1t dt 2 0,