pressuredetectrank.m

来自「Toolbox for biomedical signal processing」· M 代码 · 共 30 行

M
30
字号
function [B,A,C,D] = PressureDetectRank(x,fsa,dta,pfa);%PressureDetectRank: Pressure detector based on ranks%%   [B,A,C,D] = PressureDetectRank(x,fs,dt,pf);%%   x    Input signal       %   fs   Signal sample rate (Hz). Default=125 Hz      %   dt   Type: 0=perform detection on raw data, 1=detrend first (default) %   pf   Plot flag: 0=none (default), 1=screen,%%   B    Percusion peak (P1) index, samples%   A    Minima preceding the percusion peak (P1) index, samples %   C    Dicrotic notch (DN) index, samples%   D    Dicrotic peak (P2) index, samples%%   Beat detection algorithm for pressure signals based on ranks. The %   algorithm detects the minima (A) prior to the percursor peak, the %   percursor peak (B), the dicrotic notch (C), and the dicrotic peak (D).%%   Example: Find the minima (A) prior to the percursor peak, the percursor%   peak (B), the dicrotic notch (C), and the dicrotic peak (D) in the ICP %   signal.%%      load ICP; %      [B,A,C,D] = PressureDetectRank(icp,fs,1,1);%%   Version 1.00 MA%%   See also PressureDetect, PressureDetectInterbeat, and ECGDetectQRS.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?