hilbert-huang transform(HHT)
Version 2.0.0 (4.94 KB) by
Tao Shen
HHT transform for one-dimensional signal. Contains Empirical mode decomposition (EMD) program.
HHT transform for one-dimensional signal. Contains Empirical mode decomposition (EMD) program. The main function is HHT_Ver02.m.
Example
clc; clear; close all
Ts = 0.0005;
Fs = 1 / Ts;
N = 600;
k = 0 : N-1;
t = k .* Ts;
t = t';
sig(1:300,1) = 6 * sin(100 .* pi .* t(1:300))+0.1;
sig(301:600,1) = 6 * sin(100 .* pi .* t(301:600)) + 1.5 * sin(300 .* pi .* t(301:600))+0.1;
HHT_Ver02(t, sig, Fs);
Cite As
Tao Shen (2026). hilbert-huang transform(HHT) (https://ch.mathworks.com/matlabcentral/fileexchange/72344-hilbert-huang-transform-hht), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Created with
R2016b
Compatible with any release
Platform Compatibility
Windows macOS LinuxCategories
- Signal Processing > Signal Processing Toolbox > Transforms, Correlation, and Modeling > Transforms >
Find more on Transforms in Help Center and MATLAB Answers
Tags
Acknowledgements
Inspired by: hilbert2
Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
| Version | Published | Release Notes | |
|---|---|---|---|
| 2.0.0 |
