Home > @LogitBooster > display.m

display

PURPOSE ^

display(ab): the display function for the RealAdaBooster classifier class.

SYNOPSIS ^

function display(lb)

DESCRIPTION ^

 display(ab): the display function for the RealAdaBooster classifier class.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function display(lb)
0002 % display(ab): the display function for the RealAdaBooster classifier class.
0003 
0004 disp('Logit AdaBooster Classifier');
0005 if isnan(lb.F),
0006     disp('  classifier is not trained');
0007 else
0008     disp('  classifier is trained, the learnt paramters are:\n');
0009     if isnan(lb.detectionRate)
0010         fprintf('\tNo target detection rate was specified\n');
0011     else
0012         fprintf('\tTarget detection rate = %f\n', lb.detectionRate);
0013     end
0014     fprintf('\tThreshold = %f\n', lb.thresh);
0015     fprintf('\tNumber of stages = %d\n', length(lb.nStages));
0016 
0017 end

Generated on Sun 29-Sep-2013 01:25:24 by m2html © 2005