Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试获得我测量的频谱的包络。
我hilbert在 MATLAB 中使用了适用于我编写的虚拟函数的函数,
hilbert
但它没有为我的光谱提供正确的结果。(我得到了完全相同的曲线)。
我在想我的频谱振荡太快了,但对此不太确定。
希望有人能告诉我这里有什么问题。
A=xlsread('test.xls'); y=A(:,2); h1=imag(hilbert(y)); E=sqrt(y.^2+h1.^2);