%/* s_predict_AHE.m % script to loop through the test sets A and B % Copyright (C) 2009 Florian Jousset % 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