MATLAB: How to create a anlaytic signal from real signal

real signalspectral analysis

i have an audio signal i need to convert it in to analytic signal to use it with WVD

Best Answer

Despites its silly name ( http://www.mathworks.com/matlabcentral/answers/3134-hilbert-transform ), the hilbert function return the analytic signal
load handel
yr = hilbert(y);
Related Question