声振论坛

 找回密码
 我要加入

QQ登录

只需一步,快速开始

查看: 1568|回复: 3

[HHT] 哪位好人能帮我看看这个程序为什么不能显示图

[复制链接]
发表于 2011-6-9 13:33 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?我要加入

x
unction imf = emd(x)
% Empiricial Mode Decomposition (Hilbert-Huang Transform)
% imf = emd(x)
% Func : findpeaks
x= transpose(x(:));%转置为行矩阵
imf = [];
while ~ismonotonic(x) %当x不是单调函数,分解终止条件
   x1 = x;
   sd = Inf;%均值
%直到x1满足IMF条件,得c1
   while (sd > 0.1) | ~isimf(x1) %当标准偏差系数sd大于0.1或x1不是固有模态函数时,分量终止条件
      s1 = getspline(x1);%上包络线
      s2 = -getspline(-x1);%下包络线
      x2 = x1-(s1+s2)/2;%此处的x2为文章中的h
      
      sd = sum((x1-x2).^2)/sum(x1.^2);
      x1 = x2;
   end
   
   imf{end+1} = x1;
   x          = x-x1;
end
imf{end+1} = x;
% FUNCTIONS
function u = ismonotonic(x)
%u=0表示x不是单调函数,u=1表示x为单调的
u1 = length(findpeaks(x))*length(findpeaks(-x));
if u1 > 0, u = 0;
else,      u = 1; end
function u = isimf(x)
%u=0表示x不是固有模式函数,u=1表示x是固有模式函数
N  = length(x);
u1 = sum(x(1:N-1).*x(2:N) < 0);
u2 = length(findpeaks(x))+length(findpeaks(-x));
if abs(u1-u2) > 1, u = 0;
else,              u = 1; end

function s = getspline(x)
%三次样条函数拟合成元数据包络线
N = length(x);
p = findpeaks(x);
s = spline([0 p N+1],[0 x(p) 0],1:N);

function n = findpeaks(x)
% Find peaks.找到极值 ,n为极值点所在位置
% n = findpeaks(x)
n    = find(diff(diff(x) > 0) < 0);
u    = find(x(n+1) > x(n));
n(u) = n(u)+1;
% ------------------------------------------------------------------------------------------
% ----------------------------------------------------------------------------------------
function plot_hht00(x,Ts)
%  双边带调幅信号的EMD分解
% Plot the HHT.
% plot_hht(x,Ts)
%
% :: Syntax
%    The array(列) x is the input signal and Ts is the sampling period(取样周期).
%    Example on use: [x,Fs] = wavread('Hum.wav');
%                    plot_hht(x(1:6000),1/Fs);
% Func : emd
% Get HHT.
clear all;
close all;
Ts=0.0005;
t=0:Ts:10;                    % 采样率2000HZ
% 调幅信号
%x=sin(2*pi*t).*sin(40*pi*t);
x=sin(2*pi*t);
s1 = getspline(x);%上包络线
s2 = -getspline(-x);%上包络线
x1 = (s1+s2)/2;%此处的x2为文章中的h
figure;
plot(t,x);xlabel('Time'), ylabel('Amplitude');title('双边带调幅信号');hold on;
plot(t,s1,'-r');
plot(t,s2,'-r');
plot(t,x1,'g');

imf = emd(x);
for k = 1:length(imf)
   b(k) = sum(imf{k}.*imf{k});
   th   = angle(hilbert(imf{k}));
   d{k} = diff(th)/Ts/(2*pi);
end
[u,v] = sort(-b);
b     = 1-b/max(b);
% Set time-frequency plots.
N = length(x);
c = linspace(0,(N-2)*Ts,N-1);
%
figure;
for k = v(1:2)
  plot(c,d{k},'k.','Color',b([k k k]),'MarkerSize',3); hold on;
   set(gca,'FontSize',8,'XLim',[0 c(end)],'YLim',[0 50]);%设置x、y轴句柄
   xlabel('Time'), ylabel('Frequency');title('原信号时频图');
end
% Set IMF plots.
M = length(imf);
N = length(x);
c = linspace(0,(N-1)*Ts,N);
for k1 = 0:4:M-1
  figure
  for k2 = 1:min(4,M-k1),
      subplot(4,1,k2),
      plot(c,imf{k1+k2});
      set(gca,'FontSize',8,'XLim',[0 c(end)]);
      title('EMD分解结果');
  end
  xlabel('Time');
end
回复
分享到:

使用道具 举报

发表于 2011-6-9 17:33 | 显示全部楼层
回复 1 # dong111111 的帖子

是你自己的程序吗
 楼主| 发表于 2011-6-10 15:08 | 显示全部楼层
不是, 我按照这个程序能够分解,但就是无法显示图,  看这个程序里边有图的程序! 不明白为什么不能实现
发表于 2011-6-14 21:02 | 显示全部楼层
1.没说明怎执行(下command)
2.也不能复製LZ的情况
真的很难猜测LZ那裡可能出错!:@)
您需要登录后才可以回帖 登录 | 我要加入

本版积分规则

QQ|小黑屋|Archiver|手机版|联系我们|声振论坛

GMT+8, 2024-9-21 19:42 , Processed in 0.081076 second(s), 18 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表