how to find normalized centered instantaneous of amplitude,phase and frequency using matlab code?
3 次查看(过去 30 天)
显示 更早的评论
I work in digital modulation classification using neural network as first step is to extract feature I chose spectral feature which based on find instantaneous amplitude, phase and frequency. can anyone help me how to find them?
回答(1 个)
Shrey Joshi
2018-8-3
For instantaneous frequency you can use instfreq function in Signal processing tool. You can also look at following doc. https://www.mathworks.com/help/signal/ug/hilbert-transform-and-instantaneous-frequency.html. As shown in the doc link: For monocomponent signals: z = hilbert(inputData); instantaneous amplitude = abs(z) ; instantaneous phase = unwrap(angle(z)) ; For multicomponent signals: you can compute spectrogram and track the peaks of the power spectral density for computing instantaneous amplitude and frequency (see tfridge)
2 个评论
edu ab
2018-9-7
how did you find the normalized centered instantaneous of amplitude,phase and frequency it is not clear for me can you help
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 AI for Signals 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!