资源简介

基于小波变换的包络分析用于轴承故障诊断的源代码

资源截图

代码片段和文件信息

clc;
clear;
close all;
fs= 10000;%采样频率
N= 1024;%采样点数
load bear.mat;%故障
Data=X105_BA_time(1:N);
xData=(Data-mean(Data))/std(Data1);
%时域波形
figure(1);
plot(1:NxData);
xlabel(‘样本序号‘);
ylabel(‘电压‘);
%db10小波进行4层分解
%一维小波分解
[cl]=wavedec(xData4‘db10‘);
%重构第1-4层小波系数
d4=wrcoef(‘d‘cl‘db10‘4);
d3=wrcoef(‘d‘cl‘db10‘3);
d2=wrcoef(‘d‘cl‘db10‘2);
d1=wrcoef(‘d‘cl‘db10‘1);
%显示细节信号
figure(2);
subplot(411);
plot(d4‘LineWidth‘2);
ylabel(‘d4‘);
subplot(412);
plot(d3‘LineWidth‘2);
ylabel(‘d3‘);
subplot(413);
plot(d2‘LineWidth‘2);
ylabel(‘d2‘);
subplot(414);
plot(d1‘LineWidth‘2);
ylabel(‘d1‘);
xlab

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1383  2012-07-04 16:41  zcxb.m

----------- ---------  ---------- -----  ----

                 1383                    1


评论

共有 条评论