Predicting Acute Hypotensive Episodes: The PhysioNet/Computing in Cardiology Challenge 2009 1.0.0

File: <base>/sources/Jousset/s_predict_AHE.m (650 bytes)
%/* s_predict_AHE.m
%         script to loop through the test sets A and B
%         Copyright (C) 2009  Florian Jousset <florian.jousset at epfl.ch>
%         This software is released under the terms of the GNU General
%         Public License (http://www.gnu.org/copyleft/gpl.html).
%      */

% Event A
for i=1:10
    if i<10
        record = ['10' num2str(i) 'bn'];
    else
        record = ['1' num2str(i) 'bn'];
    end
    classA(i,1) = f_predict_AHE(record);
end

% Event B
for i=1:40
    if i<10
        record = ['20' num2str(i) 'bn'];
    else
        record = ['2' num2str(i) 'bn'];
    end
    classB(i,1) = f_predict_AHE(record);
end