资源简介
基于小波变换的包络分析用于轴承故障诊断的源代码
代码片段和文件信息
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
相关资源
- Gabor Gabor小波变换的matlab实现
- wnn 一个用小波神经网络进行非线性函
- imagefusion2836201
- OMP 小波变换和压缩感知中的OMP算法比
- Gaborpca Gabor小波变换与PCA的人脸识别代
- face 收集的最全的人脸识别代码 有小
- Gabor Gabor滤波器
- lena 灰图像三级小波分解
- edge_detection 利用小波边缘检测算法实
- Wavelet_denoising 小波变换的MATLAB源程序
-
thresholddenoisingba
sedonwavelet 小波阈值 - SIGNAL_edge_dwt 利用小波变换模极大值方
- Morlet_Matlab
- waveletdenoising 小波变换应用
-
MethodofFaultDiagnosisforRollingBearingba
se - imagereconstruction 基于小波和插值的超分
- xb 基于小波变换的图像增强代码
- tuxiangronghe :介绍了基于小波变换的图
- wavelet 小波变换用于脑电信号处理
- wavelet-matlab 基于小波变换的图像融合
- tqwt_matlab_toolbox 本代码双密度双树复小
- CS-OMP-wavelet-reconstruction
- Stationary-wavelet-transform
- gabor-pca 本程序是先用gabor小波变换对
- DCT 先用小波变换进行降维后
- tezhengtiqu 基于小波变换的特征提取
- Matlabwaveenergy 对信号f(x)进行三层小
- Voice_Conversion_1 基于GMM模型实现语音转
- 5 matlab的几种小波阈值去噪方法实例。
- EEG_WAVELET 用小波方法把脑电信号进行
评论
共有 条评论