¡¾µ÷¼Á¡¿±±¾©Ê¯ÓÍ»¯¹¤Ñ§Ôº2024Äê16¸öרҵ½ÓÊܵ÷¼Á
²é¿´: 1978  |  »Ø¸´: 6
¡¾ÐüÉͽð±Ò¡¿»Ø´ð±¾ÌûÎÊÌ⣬×÷Õßzhuxiaoxun½«ÔùËÍÄú 100 ¸ö½ð±Ò

zhuxiaoxun

гæ (³õÈëÎÄ̳)

[ÇóÖú] Ï£¶û²®ÌØÕñ¶¯·Ö½â£¨HVD£©µÄmatlab³ÌÐòÒÑÓÐ1È˲ÎÓë

¸÷λ¸ßÊÖË­ÓÐÒ»¸öÏ£¶û²®ÌØÕñ¶¯·Ö½â£¨Hilbert Vibration Decomposition£¬HVD£©µÄmatlab³ÌÐò£¬ÄÜ·ñÌṩһ¸ö¡£¶àлÀ²£¡£¡£¡
»Ø¸´´ËÂ¥
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû

zxb05208

гæ (³õÈëÎÄ̳)

ÄãÏÖÔÚÓÐÂð£¿
2Â¥2016-01-04 16:26:22
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû

Mr__Right

ר¼Ò¹ËÎÊ (ÖøÃûдÊÖ)

¡¾´ð°¸¡¿Ó¦Öú»ØÌû

Ô´´úÂëÈçÏ£º
CODE:
function [Y,A,om_r,dev]=hvd(x,n,fp); % % x - initial signal, n - number of decomposed components % Y - decomposed components, A - component envelopes , % F_r - component relative angular frequency % F=Fs*om_r/2/pi - Absolute frequecy [Hz], Fs -sampling frequency, % dev=std(Y_i)/std(Y_1)) - relative standard deviation of the decomposed component % % Example:  [Y,A,om_r,dev]=hvd(x,2,0.02); % % LIMITATIONS: %    The sampling frequency Fs has to be in the range Fs=(20-80)*f0. %    The minimum of points in time domain is 230*3+1 = 691 % % © 2011 Michael Feldman % For use with the book "HILBERT TRANSFORM APPLICATION % IN MECHANICAL VIBRATION", John Wiley & Sons, 2011 %  if n>7; disp('Max number of components not greater than 7'); end if n<=0; disp('Number of components less than 1');Y=[];A=[];F_r=[];dev=[];return;end x=x(:); s(1)=std(x); if s(1)==0,Y=[];A=[];F_r=[];dev=[];disp('Zero signal');return,end; for k=1:n;     [At,Ft,phit]=inst(x,1);     omf=2*pi*lpf(Ft,fp);% Angular Frequency lowpass filtering (Smoothing)     [yi,Ai,phi]=synchdem(x,omf,fp);     Y(:,k)=yi; A(:,k)=Ai;     om_r(:,k)=omf;            % Angular Frequency, [Radians]         x=x-yi;         s(k)=std(x)/s(1);         if k == 7, dev=[1 diff(s)]; return,  end end dev=s;  % Relative standard deviation of the components  return

ʹÓ÷½·¨µÄÀý×Ó£º
CODE:
%Example  om=0.2+0.12*cos(0.4*(0:1023)); x=cos(cumtrapz(om)); [Y,A,F_r,dev]=hvd(x,3,0.05);  figure(1); subplot(211) plot([x']) axis([400 600 -1.1 1.1]) ylabel('Initial signal') subplot(212) plot(Y) axis([400 600 -1.1 1.1]) xlabel('Points') ylabel('Signal Components')  figure(2) psd(x)  %

ÎÄÕÂÄËÉíÍâÖ®Îï,Òª¶à¿¼ÂDZ༭¡¢Éó¸åÈ˺ͶÁÕߵĸÐÊÜ¡£
3Â¥2016-01-04 19:11:47
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû

Mr__Right

ר¼Ò¹ËÎÊ (ÖøÃûдÊÖ)

function [Y,A,om_r,dev]=hvd(x,n,fp);
%
% x - initial signal, n - number of decomposed components
% Y - decomposed components, A - component envelopes ,
% F_r - component relative angular frequency
% F=Fs*om_r/2/pi - Absolute frequecy [Hz], Fs -sampling frequency,
% dev=std(Y_i)/std(Y_1)) - relative standard deviation of the decomposed component
%
% Example:  [Y,A,om_r,dev]=hvd(x,2,0.02);
%
% LIMITATIONS:
%    The sampling frequency Fs has to be in the range Fs=(20-80)*f0.
%    The minimum of points in time domain is 230*3+1 = 691
%
% © 2011 Michael Feldman
% For use with the book "HILBERT TRANSFORM APPLICATION
% IN MECHANICAL VIBRATION", John Wiley & Sons, 2011
%

if n>7; disp('Max number of components not greater than 7'); end
if n<=0; disp('Number of components less than 1');Y=[];A=[];F_r=[];dev=[];return;end
x=x(; s(1)=std(x);
if s(1)==0,Y=[];A=[];F_r=[];dev=[];disp('Zero signal');return,end;
for k=1:n;
    [At,Ft,phit]=inst(x,1);
    omf=2*pi*lpf(Ft,fp);% Angular Frequency lowpass filtering (Smoothing)
    [yi,Ai,phi]=synchdem(x,omf,fp);
    Y(:,k)=yi; A(:,k)=Ai;
    om_r(:,k)=omf;            % Angular Frequency, [Radians]
        x=x-yi;
        s(k)=std(x)/s(1);
        if k == 7, dev=[1 diff(s)]; return,  end
end
dev=s;  % Relative standard deviation of the components

return



%Example

om=0.2+0.12*cos(0.4*(0:1023));
x=cos(cumtrapz(om));
[Y,A,F_r,dev]=hvd(x,3,0.05);

figure(1);
subplot(211)
plot([x'])
axis([400 600 -1.1 1.1])
ylabel('Initial signal')
subplot(212)
plot(Y)
axis([400 600 -1.1 1.1])
xlabel('Points')
ylabel('Signal Components')

figure(2)
psd(x)

%
ÎÄÕÂÄËÉíÍâÖ®Îï,Òª¶à¿¼ÂDZ༭¡¢Éó¸åÈ˺ͶÁÕߵĸÐÊÜ¡£
4Â¥2016-01-04 19:12:33
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû

czhujian

½ð³æ (³õÈëÎÄ̳)

ÒýÓûØÌû:
4Â¥: Originally posted by Mr__Right at 2016-01-04 19:12:33
function =hvd(x,n,fp);
%
% x - initial signal, n - number of decomposed components
% Y - decomposed components, A - component envelopes ,
% F_r - component relative angular frequency
% F=Fs*om_r ...

ºÃÏñ³ÌÐò²»È«£¬ÇëÎÊinst()Õâ¸öº¯ÊýÊÇʲô£¿
5Â¥2016-03-18 10:07:17
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû

Mr__Right

ר¼Ò¹ËÎÊ (ÖøÃûдÊÖ)

¡¾´ð°¸¡¿Ó¦Öú»ØÌû

ÒýÓûØÌû:
5Â¥: Originally posted by czhujian at 2016-03-18 10:07:17
ºÃÏñ³ÌÐò²»È«£¬ÇëÎÊinst()Õâ¸öº¯ÊýÊÇʲô£¿...

http://blog.csdn.net/stereohomology/article/details/50922144
ÎÄÕÂÄËÉíÍâÖ®Îï,Òª¶à¿¼ÂDZ༭¡¢Éó¸åÈ˺ͶÁÕߵĸÐÊÜ¡£
6Â¥2016-03-18 12:00:33
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû

yangruizmd

гæ (³õÈëÎÄ̳)

ÒýÓûØÌû:
6Â¥: Originally posted by Mr__Right at 2016-03-18 12:00:33
http://blog.csdn.net/stereohomology/article/details/50922144...

ÄúºÃ£¬Õâ¸öÍøÒ³´ò²»¿ª£¬¿ÉÒÔ¸øÒ»ÏÂÈ«µÄÏ£¶û²®ÌØÕñ¶¯·Ö½âµÄ´úÂëÂð£¿Ð»Ð»À²
7Â¥2018-07-16 17:29:37
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû
Ïà¹Ø°æ¿éÌøת ÎÒÒª¶©ÔÄÂ¥Ö÷ zhuxiaoxun µÄÖ÷Ìâ¸üÐÂ
²»Ó¦Öú È·¶¨»ØÌûÓ¦Öú (×¢Ò⣺ӦÖú²Å¿ÉÄܱ»½±Àø£¬µ«²»ÔÊÐí¹àË®£¬±ØÐëÌîд15¸ö×Ö·ûÒÔÉÏ)
×î¾ßÈËÆøÈÈÌûÍƼö [²é¿´È«²¿] ×÷Õß »Ø/¿´ ×îºó·¢±í
[»ù½ðÉêÇë] ¹À¼Æ½ñÄêÇà»ùÓÖûϷ +9 ÒäÄî7 2024-04-18 9/450 2024-04-19 17:01 by ˳ÆäziÈ»
[Óлú½»Á÷] ×ÏÍâ¹âÆ× 50+3 54ºú 2024-04-17 3/150 2024-04-19 10:48 by Nanamiwww
[»ù½ðÉêÇë] ÏÂÓêÁË +13 zju2000 2024-04-16 19/950 2024-04-19 09:24 by duxin_30
[ÂÛÎÄͶ¸å] ÇóÖú 100+3 guhangyu 2024-04-15 3/150 2024-04-19 08:48 by bobvan
[¸ß·Ö×Ó] ¾Û°±õ¥±ûÏ©Ëáõ¥Ô¤¾ÛÌåºÏ³É +3 15692385990 2024-04-14 6/300 2024-04-18 19:43 by zhang1991
[»ù½ðÉêÇë] ¹ú¼Ò×ÊÖú²©Ê¿ºóBCµµ³öУºó×ÊÖúµÄ¸ÅÂʶà´ó£¿ +3 ¿¨¿¨ÂÞÌØŶ 2024-04-16 3/150 2024-04-18 12:58 by wolfgangHugh
[¿¼ÑÐ] Ò»Ö¾Ô¸±±»¯085600 328ÇóÏßÉϵ÷¼Á +10 Mrshark 2024-04-13 10/500 2024-04-18 08:30 by Áõ¹úÄþ
[¿¼ÑÐ] 0854¼ÆËã»ú¼¼Êõ316·Öµ÷¼Á£¬ÇóÇóµ¼Ê¦ ÀÌÎÒһϣ¬ÓÐѧ¾ÍÉÏ +6 zhushijie218 2024-04-16 7/350 2024-04-17 23:33 by petro
[¿¼ÑÐ] Çóµ÷¼Á»¯¹¤Ñ§Ë¶276 +14 ÐÇÐÇÔÉÂä 2024-04-13 14/700 2024-04-17 22:57 by »ª±±Áõ±ø
[¿¼ÑÐ] ¹¤Ñ§322£¬Ó¢ÓïÁù¼¶Çóµ÷¼Á +3 domax 2024-04-17 10/500 2024-04-17 21:25 by ¶«·½»¨Ô°Ð¡Íò
[Óлú½»Á÷] ÔõôÇåÏ´ÉÕÆ¿ 20+5 ww34523 2024-04-16 6/300 2024-04-17 15:20 by 591950582
[¿¼ÑÐ] 332Çóµ÷¼Á +3 ľҶÏÂ1999 2024-04-16 5/250 2024-04-17 00:56 by angeliar
[¿¼ÑÐ] Õã½­º£Ñó´óѧ ´¬²°Ó뺣ÔËѧԺ ½»Í¨ÔËÊäר˶ £¨½»Í¨ÐÅÏ¢¹¤³Ì¼°¿ØÖÆ£©½ÓÊÕµ÷½Ú +4 joee 2024-04-15 8/400 2024-04-16 20:47 by TommyZiAng
[¿¼ÑÐ] 294Çóµ÷¼Á +3 694062003 2024-04-15 4/200 2024-04-16 15:01 by ×Þ×Þ¹þ¹þ
[¿¼ÑÐ] 329Çóµ÷¼Á +18 ÍõÓô½à¹þ¹þ¹þ 2024-04-14 26/1300 2024-04-15 19:10 by mumin1990
[¿¼ÑÐ] 334Çóµ÷¼Á +4 ѧҩ¾ÈÈË 2024-04-14 4/200 2024-04-15 15:05 by hunanzang
[¿¼ÑÐ] 273Çóµ÷¼Á +5 LateÍñ°² 2024-04-15 7/350 2024-04-15 13:01 by LateÍñ°²
[¿¼ÑÐ] »¯Ñ§¡¢²ÄÁÏÀà×îºóµ÷¼Á»ú»á£¡£¡£¡ +3 ¼ÓÓÍŬÁ¦¾ÍºÃ 2024-04-14 10/500 2024-04-15 09:05 by ÈÎpen
[¿¼ÑÐ] 274Çóµ÷¼Á +5 Ëĸö´ó×Ö£¬ÄãµÎº 2024-04-13 6/300 2024-04-15 00:01 by Ëĸö´ó×Ö£¬ÄãµÎº
[¿¼ÑÐ] 290£¬Ò»Ö¾Ô¸±¨¿¼ÖØÇì´óѧÉúÎïÓëҽҩר˶£¬Çóµ÷¼Á +4 GPX4 2024-04-13 5/250 2024-04-13 17:19 by lincunhui
ÐÅÏ¢Ìáʾ
ÇëÌî´¦ÀíÒâ¼û