当前位置:网站首页>Empirical mode decomposition (EMD) and Hilbert Huang transform (HHT)
Empirical mode decomposition (EMD) and Hilbert Huang transform (HHT)
2022-06-22 06:07:00 【studyer_ domi】
1、 Content abstract
A little
329- Can communicate 、 consulting 、 Answering question
2、 Content description
A little
See reference for details
3、 Simulation analysis
clc
close all
clear
data = xlsread('X.xlsx');
fs = 8000;
t = 0:1/fs:(length(data)-1)/fs;
figure(100)
plot(t,data)
xlabel(' Time /s');ylabel(' amplitude ');
[t_x,frequency_x,f_spectrum_x]=fft_s(data,0.5,fs); % Draw time frequency amplitude diagram
figure(101),surf(t_x,frequency_x,f_spectrum_x); % mapping
shading interp;
xlabel(' Time /s');ylabel(' frequency /Hz');zlabel(' amplitude ');title The signal
imf = emd(data); % Empirical decomposition
M = length(imf);
N = length(data);
for i = 1:M
figure(i)
plot(t,imf{i})
xlabel(' Time /s');ylabel(' amplitude ');
end



4、 Reference paper
边栏推荐
- 生信可视化(part4)--相关性图
- 关于jinja2 宏定义的小问题
- MySQL basic interview questions
- Ethernet UDP frame contract design
- Signal output library
- TiDB 社区线下交流会,天津 & 石家庄的小伙伴看过来~
- idea插件EasyCode的使用
- BinaryFormatter saving and loading game data for unity
- 单细胞论文记录(part9)--Spatial charting of single-cell transcriptomes in tissues
- Logback自定义Pattern参数解析
猜你喜欢
随机推荐
Read and understand the four deep learning methods of supervised learning, unsupervised learning, semi supervised learning and intensive learning
经验模式分解(EMD)和希尔伯特-黄变换(HHT)
Single cell paper records (Part8) -- cell2location maps fine grained cell types in spatial transcriptomics
W800芯片平台进入OpenHarmony主干
Using SystemVerilog to describe a state machine
单球机器人动力学与控制研究
生信文献学习(part1)--PRECISE: a ... approach to transfer predictors of drug response from pre-clinical ...
Trigger
Design input of Oracle project management system
Unity app improves device availability
402-字符串(题目:剑指Offer58-II.左旋转字符串、 28. 实现 strStr()、459.重复的子字符串)
DOS bat syntax record I
【技术随记】
Case analysis of terminal data leakage prevention
Assertion based validation
OSG compiling osgqt
PID notes
Dos Bat 语法记录一
D3D10 screenshot function saves texture to local
舰载机自动着舰控制系统研究









