⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 emd_triang.m

📁 还是希尔伯特--黄变换的程序
💻 M
字号:
% EMD_TRIANG.M%% P. Flandrin, Mar. 13, 2003%% computes and displays EMD for the sum of 2 triangular % waveforms + 1 tone %% produces Figure 2 in%% G. Rilling, P. Flandrin and P. Gon鏰lv鑣% "On Empirical Mode Decomposition and its algorithms"% IEEE-EURASIP Workshop on Nonlinear Signal and Image Processing% NSIP-03, Grado (I), June 2003N = 1024;% # of data samplest = 1:N;% triangular waveform 1p1 = fix(N/6);% periodx1 = xxx(N,p1);subplot(4,1,1)plot(x1);ylabel('x1')% tonef0 = 0.03;% frequencyx2 = real(fmconst(N,f0));subplot(4,1,2)plot(x2)ylabel('x2')% triangular waveform 2p3 = 5;% periodx3 = xxx(N,p3);subplot(4,1,3)plot(x3)ylabel('x3')x = x1 + 0.4*x2' + .4*x3;subplot(4,1,4)plot(x)ylabel('sig')figure(2)[imf,ort,nbits] = emd(x,t,[0.05,0.5,0.05]);emd_visu(x,t,imf,2);%figure(1)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -