|
EDA365欢迎您登录!
您需要 登录 才可以下载或查看,没有帐号?注册
x
- ?) l! a0 S9 `# u6 L$ R
该复指数序列为:
2 ?! O' n; P7 b3 V' f2 |2 s- N
4 F6 V/ I- C# E
$ g: ~" ?0 J* k+ `/ j/ t: e& Y9 d( s) v
直接给出MATLAB脚本:' D/ r: t }1 j( x) v9 u
9 B8 B7 f* f: h- clc
- clear
- close all
- n = [-10:10];
- alpha = -0.1 + 0.3j;
- x = exp(alpha*n);
- subplot(2,2,1);
- stem(n,real(x),'filled');
- title('real part');
- xlabel('n');
- ylim([-3,2]);
- subplot(2,2,2);
- stem(n,imag(x),'filled');
- title('imaginary part');
- xlabel('n');
- subplot(2,2,3);
- stem(n,abs(x),'filled');
- title('magnitude part');
- xlabel('n');
- subplot(2,2,4);
- stem(n,(180/pi)*angle(x),'filled');
- title('phase part');
- xlabel('n');
' Q( x0 l/ J* y5 e" P
$ C6 S- t, B5 ~& X6 j+ ^+ H I& B) k5 F3 O0 L- W& o9 i4 J
+ W& [5 p b0 n5 v- }" N9 B0 j3 W- h+ Y* w1 e3 l
|
|