How to apply Hilbert Huang transfer method on the signal Sc(t):
Show older comments
How to run Hilbert spectrum of the following function(signal):

Answers (1)
Ayush Bansal
on 30 Oct 2020
Edited: Ayush Bansal
on 30 Oct 2020
0 votes
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.
2 Comments
Jan Ali
on 16 Jan 2021
Categories
Find more on Hilbert and Walsh-Hadamard Transforms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!