2023 03月04日
作者: 小白哥
  • 浏览: 412
  • 收藏:0
  • 点赞:0
MATLAB-EMD

1.代码

%Perform empirical mode decomposition to plot the intrinsic mode functions and residual of the signal. 
%Since the signal is not smooth, specify 'pchip' as the interpolation method.
clear;
clc;
load('sinusoidalSignalExampleData.mat','X','fs')
t = (0:length(X)-1)/fs;
%emd(X,'MaxNumIMF',5)        %5个IMF
emd(X,'Interpolation','pchip','Display',1)

2.运行结果

1.jpg

2.jpg

注:点击鼠标右键,在弹出的窗口选择"IMF 选择器...",可选择显示任意IMF,按住"ctrl"键可多选。

3.jpg

4.jpg


  

发表评论

评论列表


没有评论

筛选

文章分类

热门文章

企业招聘网址

2023-12-07  浏览:3043次

BC1.2协议介绍

2023-06-14  浏览:2945次

USB2.0速度识别

2023-10-23  浏览:1366次