资源简介

MATLAB心电图自动诊断程序。围绕心电信号预处理、心电波形检侧与定位、心电特征提取与分析三个方面。研究MIT数据库中的心电信号,针对心电信号中存在的工频干扰、基线漂移、肌电干扰等各种噪声,设计出了高通、低通、带阻、平滑效果滤波器来对心电信号进行预处理,对处理后的信号采用连续小波变化进行特征点的定位及瞬时心率的计算,最后通过分析给出诊断结果。

资源截图

代码片段和文件信息

function varargout = baogao(varargin)
% BAOGAO MATLAB code for baogao.fig
%      BAOGAO by itself creates a new BAOGAO or raises the existing
%      singleton*.
%
%      H = BAOGAO returns the handle to a new BAOGAO or the handle to
%      the existing singleton*.
%
%      BAOGAO(‘CALLBACK‘hobjecteventDatahandles...) calls the local
%      function named CALLBACK in BAOGAO.M with the given input arguments.
%
%      BAOGAO(‘Property‘‘Value‘...) creates a new BAOGAO or raises the
%      existing singleton*.  Starting from the left property value pairs are
%      applied to the GUI before baogao_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to baogao_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 baogao

% Last Modified by GUIDE v2.5 07-Apr-2016 18:22:20

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @baogao_OpeningFcn ...
                   ‘gui_OutputFcn‘  @baogao_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 baogao is made visible.
function baogao_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 baogao (see VARARGIN)

% Choose default command line output for baogao
handles.output = hobject;

% Update handles structure
guidata(hobject handles);
set(gcf‘numbertitle‘‘off‘‘name‘‘病例报告‘);
% UIWAIT makes baogao wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = baogao_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;



function edit13_Callback(hobject eventdata handles)
% hobject    handle to edit13 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handle

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

     文件     118861  2016-03-26 21:50  ECG diag\101.txt

     文件     118861  2016-03-26 21:52  ECG diag\103.txt

     文件     118862  2016-03-26 21:54  ECG diag\105.txt

     文件     118861  2016-03-26 21:55  ECG diag\106.txt

     文件     118862  2016-03-26 21:59  ECG diag\111.txt

     文件     374612  2016-03-26 15:43  ECG diag\115.txt

     文件     118861  2016-03-26 22:09  ECG diag\123.txt

     文件     118862  2016-03-26 22:14  ECG diag\209.txt

     文件      21235  2016-04-08 18:51  ECG diag\baogao.fig

     文件      61006  2016-04-08 18:51  ECG diag\baogao.m

     文件        432  2016-04-06 19:01  ECG diag\boxingduibi.m

     文件      10386  2016-03-24 22:10  ECG diag\canshudingyi.fig

     文件      14680  2016-03-18 15:48  ECG diag\canshudingyi.m

     文件        474  2016-04-03 20:59  ECG diag\daizulvbo.m

     文件        571  2016-04-03 21:43  ECG diag\ditonglvbo.m

     文件        471  2016-04-06 18:34  ECG diag\duquxinhao.m

     文件       5433  2016-04-10 17:17  ECG diag\fenxi.m

     文件        387  2016-04-04 10:04  ECG diag\huitu.m

     文件        314  2016-04-03 21:11  ECG diag\jixianlvbo.m

     文件      16535  2016-03-29 21:48  ECG diag\lurubingli.fig

     文件      22693  2016-04-08 18:42  ECG diag\lurubingli.m

     文件       2206  2016-03-31 22:24  ECG diag\lvbohou.m

     文件        536  2016-04-06 18:31  ECG diag\pinghualvbo.m

     文件        271  2016-04-03 21:57  ECG diag\shujubaocun.m

     文件      68866  2016-04-10 17:17  ECG diag\t.txt

     文件       1328  2016-04-06 21:59  ECG diag\tongji.m

     文件        168  2016-04-03 22:09  ECG diag\xianxingchazhi.m

     文件      16270  2016-04-08 18:51  ECG diag\xindiantu.fig

     文件      30102  2016-04-08 21:47  ECG diag\xindiantu.m

     文件     216304  2016-04-10 17:17  ECG diag\Xn.txt

............此处省略5个文件信息

评论

共有 条评论