How to get the phase in function of time of the hht (Hilbert-Huang-transform?
8 次查看(过去 30 天)
显示 更早的评论
Hi,
we try to decompensate a signal with matlab with a emd (empirical mode decomposition) and with hht(Hilbert-Huang transform). From the IMFs, we try to compute the instantaneous phase IP. It is already possible with python:
https://emd.readthedocs.io/en/stable/emd_tutorials/00_quick_start/emd_tutorial_00_start_01_quicksift.html
IP, IF, IA = emd.spectra.frequency_transform(imf, sample_rate, 'hilbert')
Is it also possible with matlab? I have only found this article about emd: https://de.mathworks.com/help/signal/ref/emd.html
Thanks for your help.
0 个评论
回答(1 个)
AH
2022-10-27
Instantaneous phase can be obtained by taking the integral from the instantaneous frequency, where is the initial phase at time and is the instantaneous frequency. To compute the integral numerically, cumtrapz can be used.
load('sinusoidalSignalExampleData.mat','X','fs')
t = (0:length(X)-1)/fs;
[imf,residual,info] = emd(X,'Interpolation','pchip');
iph = cumtrapz(t,imf);
figure
subplot(211),plot(t,imf(:,3)),xlabel("Time [sec]"),ylabel("Inst. Freq."),grid("minor")
subplot(212),plot(t,iph(:,3)),,xlabel("Time [sec]"),ylabel("Inst. Phase."),grid("minor")
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Transforms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!