dingyan 发表于 2010-9-2 21:17

复数变量使用stem绘图系针对虚数?

本帖最后由 ChaChing 于 2010-9-3 08:04 编辑

clear; clc;
fs=10; t=0:1/fs:10; x=2*sin(t); y=hilbert(x); z=imag(y);
subplot(311); stem(x,'.');
subplot(312); stem(y,'.');
subplot(313); stem(z,'.');

y是复数,z是y的虚部,为什么画出的y和z是一样的。
按道理来讲,画y画出的应该是它的实部啊?
自己想了半天没想通,请教各位一下!!!

ChaChing 发表于 2010-9-3 00:15

的确如此! Ref
http://www.mathworks.com/matlabcentral/newsreader/view_thread/288928

dingyan 发表于 2010-9-3 11:24

谢谢指导,我明白了:@)
页: [1]
查看完整版本: 复数变量使用stem绘图系针对虚数?