hering 发表于 2008-6-3 22:23

请教hilbert变换的问题

xr = ;
x = hilbert(xr);
xi=imag(x);
hold on;
subplot(3,1,1);
plot(xr);
subplot(3,1,2);
plot(xi);subplot(3,1,3);
plot(x);

程序里面的
用plot画 复数x 和 x的虚部xi 怎么图一样的啊

另外附件为hilbert的函数。

zhlong 发表于 2008-6-3 23:49

plot(x);
不就相当于plot(xi)么,在你的程序里。
x的实部就是xr = ; ,所以plot(x);就是plot(1:4,xi)和plot(xi)一样

hering 发表于 2008-6-4 17:34

本帖最后由 wdhd 于 2016-9-10 14:44 编辑

原帖由 zhlong 于 2008-6-3 23:49 发表
plot(x);
不就相当于plot(xi)么,在你的程序里。
x的实部就是xr = ; ,所以plot(x);就是plot(1:4,xi)和plot(xi)一样
谢谢楼上,忽略了这个!
页: [1]
查看完整版本: 请教hilbert变换的问题