?? demo1.m
字號:
% DEMO 1 - identifies QRS-complexes
% $Revision: 1.3 $
% $Id: demo1.m,v 1.3 2003/10/13 18:32:05 schloegl Exp $
% Copyright (C) 2000-2003 by Alois Schloegl <a.schloegl@ieee.org>
% This library is free software; you can redistribute it and/or
% modify it under the terms of the GNU Library General Public
% License as published by the Free Software Foundation; either
% Version 2 of the License, or (at your option) any later version.
%
% This library is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
% Library General Public License for more details.
%
% You should have received a copy of the GNU Library General Public
% License along with this library; if not, write to the
% Free Software Foundation, Inc., 59 Temple Place - Suite 330,
% Boston, MA 02111-1307, USA.
% load file
if exist('F')~=1,
F=''; P='';
end
if exist(fullfile(P,F))~=2,
[F,P]=uigetfile('*.*','Pick an ECG file');
end
CHAN = input('which channel?');
if CHAN<1, CHAN=0; end;
[s,h] = sload(fullfile(P,F),CHAN);
Fs = h.SampleRate(min(length(h.SampleRate),CHAN));
% processing of ECG-envelope
MODE = {'ECG_envelope',Fs};
[Y,Z] = processing(MODE,s(:,1));
% THRESHOLD = quantile(Y,.9) is often a good choice.
tmp = sort(Y); TH = tmp(round(length(Y)*.9));
% identify fiducial points
qrsindex = gettrigger(Y,TH);
% displays detection
subplot(211)
plot((1:size(s,1))/Fs,[s,Y],'-',qrsindex/Fs,-ones(size(qrsindex)),'x');
subplot(212)
semilogy((qrsindex(1:end-1)+qrsindex(2:end))/Fs/2,diff(qrsindex)/Fs);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -