【齿轮设计】齿轮箱振动数据分析【含GUI Matlab源码 2973期】

⛄一、获取代码方式

获取代码方式1:
完整代码已上传我的资源:【齿轮设计】基于matlab GUI齿轮箱振动数据分析【含Matlab源码 2973期】
点击上面蓝色字体,直接付费下载,即可。

获取代码方式2:
付费专栏数据分析(Matlab)

备注:
点击上面蓝色字体付费专栏数据分析(Matlab),扫描上面二维码,付费299.9元订阅海神之光博客付费专栏,凭支付凭证,私信博主,可免费获得5份本博客上传CSDN资源代码(有效期为订阅日起,三天内有效);
点击CSDN资源下载链接:5份本博客上传CSDN资源代码

⛄二、部分源代码

function varargout = Mainchilun(varargin)
% MAINCHILUN MATLAB code for Mainchilun.fig
% MAINCHILUN, by itself, creates a new MAINCHILUN or raises the existing
% singleton*.
%
% H = MAINCHILUN returns the handle to a new MAINCHILUN or the handle to
% the existing singleton*.
%
% MAINCHILUN(‘CALLBACK’,hObject,eventData,handles,…) calls the local
% function named CALLBACK in MAINCHILUN.M with the given input arguments.
%
% MAINCHILUN(‘Property’,‘Value’,…) creates a new MAINCHILUN or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before Mainchilun_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to Mainchilun_OpeningFcn via varargin.
%
% *See GUI Options on GUIDE’s Tools menu. Choose “GUI allows only one
% instance to run (singleton)”.
%
% See also: GUIDE, GUIDATA, GUIHANDLES

% Edit the above text to modify the response to help Mainchilun

% Last Modified by GUIDE v2.5 09-Sep-2022 23:12:37

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name’, mfilename, …
‘gui_Singleton’, gui_Singleton, …
‘gui_OpeningFcn’, @Mainchilun_OpeningFcn, …
‘gui_OutputFcn’, @Mainchilun_OutputFcn, …
‘gui_LayoutFcn’, [] , …
‘gui_Callback’, []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT

% — Executes just before Mainchilun is made visible.
function Mainchilun_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% varargin command line arguments to Mainchilun (see VARARGIN)

% Choose default command line output for Mainchilun
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

% UIWAIT makes Mainchilun wait for user response (see UIRESUME)
% uiwait(handles.figure1);

% — Outputs from this function are returned to the command line.
function varargout = Mainchilun_OutputFcn(hObject, eventdata, handles)
% varargout cell array for returning output args (see VARARGOUT);
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.output;

% — Executes on selection change in listbox1.
function listbox1_Callback(hObject, eventdata, handles)
% hObject handle to listbox1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,‘String’)) returns listbox1 contents as cell array
% contents{get(hObject,‘Value’)} returns selected item from listbox1

% — Executes during object creation, after setting all properties.
function listbox1_CreateFcn(hObject, eventdata, handles)
% hObject handle to listbox1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called

% Hint: listbox controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,‘BackgroundColor’), get(0,‘defaultUicontrolBackgroundColor’))
set(hObject,‘BackgroundColor’,‘white’);
end

% — Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
axes(handles.axes1) ;
cla reset
fs=2000*2.56; % 采样率
load data.mat
t=0:1/fs:(length(signal(1,:))-1)/fs; %以时间为横坐标
signal_type = get(handles.signal,‘Value’) ;
switch signal_type
case 1
signaldo=signal(1,:);
case 2
signaldo=signal(2,:);
case 3
signaldo=signal(3,:);
case 4
signaldo=signal(4,:);
end
signalnew=wden(signaldo,‘minimaxi’,‘s’,‘mln’,5,‘sym5’); %小波分解去噪
axes(handles.axes1);
plot(t,signaldo,‘-b’);hold on;
plot(t,signalnew,‘-r’);
xlim([0,11]);ylabel(‘加速度’);xlabel(‘时间(s)’);
legend(‘去噪前’,‘去噪后’);
feature(1)=max(signalnew); %特征1 max
feature(2)=min(signalnew); %特征2 min
feature(3)=mean(signalnew); %特征3 mean
feature(4)=var(signalnew); %特征4 方差
feature(5)=std(signalnew); %特征5 均方根
set(handles.edit1,‘String’,num2str(feature(1)));
set(handles.edit2,‘String’,num2str(feature(2)));
set(handles.edit3,‘String’,num2str(feature(3)));
set(handles.edit4,‘String’,num2str(feature(4)));
set(handles.edit5,‘String’,num2str(feature(5)));

% — Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)

% — Executes on button press in pushbutton3.
function pushbutton3_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton3 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
axes(handles.axes1) ;
cla reset
fs=2000*2.56; % 采样率
load data.mat
t=0:1/fs:(length(signal(1,:))-1)/fs; %以时间为横坐标
signal_type = get(handles.signal,‘Value’) ;
switch signal_type
case 1
signaldo=signal(1,:);
case 2
signaldo=signal(2,:);
case 3
signaldo=signal(3,:);
case 4
signaldo=signal(4,:);
end
signalnew=wden(signaldo,‘minimaxi’,‘s’,‘mln’,5,‘sym5’); %小波分解去噪
signalnew=signalnew./max(abs(signalnew)); %归一化
axes(handles.axes1);
plot(t,signalnew,‘-k’);
xlim([0,11]);ylabel(‘加速度’);xlabel(‘时间(s)’);
feature(1)=max(signalnew); %特征1 max
feature(2)=min(signalnew); %特征2 min
feature(3)=mean(signalnew); %特征3 mean
feature(4)=var(signalnew); %特征4 方差
feature(5)=std(signalnew); %特征5 均方根
set(handles.edit1,‘String’,num2str(feature(1)));
set(handles.edit2,‘String’,num2str(feature(2)));
set(handles.edit3,‘String’,num2str(feature(3)));
set(handles.edit4,‘String’,num2str(feature(4)));
set(handles.edit5,‘String’,num2str(feature(5)));

function edit1_Callback(hObject, eventdata, handles)
% hObject handle to edit1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)

% Hints: get(hObject,‘String’) returns contents of edit1 as text
% str2double(get(hObject,‘String’)) returns contents of edit1 as a double

% — Executes during object creation, after setting all properties.
function edit1_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,‘BackgroundColor’), get(0,‘defaultUicontrolBackgroundColor’))
set(hObject,‘BackgroundColor’,‘white’);
end

function edit2_Callback(hObject, eventdata, handles)
% hObject handle to edit2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)

% Hints: get(hObject,‘String’) returns contents of edit2 as text
% str2double(get(hObject,‘String’)) returns contents of edit2 as a double

% — Executes during object creation, after setting all properties.
function edit2_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,‘BackgroundColor’), get(0,‘defaultUicontrolBackgroundColor’))
set(hObject,‘BackgroundColor’,‘white’);
end

⛄三、运行结果

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

⛄四、matlab版本及参考文献

1 matlab版本
2014a

2 参考文献
[1] 由伟,刘亚秀.MATLAB数据分析教程[M].清华大学出版社,2020.
[2]王岩,隋思涟.试验设计与MATLAB数据分析[M].清华大学出版社,2012.

3 备注
简介此部分摘自互联网,仅供参考,若侵权,联系删除

  • 35
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Matlab领域

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值