How to apply Hilbert Huang transfer method on the signal Sc(t):
2 次查看(过去 30 天)
显示 更早的评论
How to run Hilbert spectrum of the following function(signal):
0 个评论
回答(1 个)
Ayush Bansal
2020-10-30
编辑:Ayush Bansal
2020-10-30
Create a t vector varying from 0 to 0.3s with sampling rate fs
t=[0:1/fs:0.3];
[value,idx1]=min(abs(t-0.1)); which will give index for ta
Similarly find index for tb and tc.
Create a signal vector of size t;
Signal=zeros(length(t));
Then define signal for 0-ta,ta-tb and tb-tc.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Transforms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!