Code covered by the BSD License  

Highlights from
Statistical Learning Toolbox

from Statistical Learning Toolbox by Dahua Lin
Functions for statistical learning, pattern recognition and computer vision, covering many topics.

Description of writeblank
Home > sltoolbox > fileio > @sllog > writeblank.m

writeblank

PURPOSE ^

WRITEBLANK Writes a blank line to log

SYNOPSIS ^

function writeblank(logger)

DESCRIPTION ^

WRITEBLANK Writes a blank line to log

 $ Syntax $
   - writeblank(logger)

 $ Description $
   - writeblank(logger) writes one blank line to logging output.

 $ History $
   - Created by Dahua Lin, on Aug 13, 2006

CROSS-REFERENCE INFORMATION ^

This function calls:
  • disp DISP displays the dataset fields
This function is called by:
  • edl_batchexp EDL_BATCHEXP Performs Batch experiments according to scheme
  • edl_go EDL_GO The Top interface for doing experiments in EDL
  • edl_logerror EDL_LOGERROR Logs an error into logger

SOURCE CODE ^

0001 function writeblank(logger)
0002 %WRITEBLANK Writes a blank line to log
0003 %
0004 % $ Syntax $
0005 %   - writeblank(logger)
0006 %
0007 % $ Description $
0008 %   - writeblank(logger) writes one blank line to logging output.
0009 %
0010 % $ History $
0011 %   - Created by Dahua Lin, on Aug 13, 2006
0012 %
0013 
0014 if logger.winshow
0015     disp(' ');
0016 end
0017 
0018 if ~isempty(logger.files)
0019     
0020     F = logger.files;
0021     nf = length(F);
0022     for i = 1 : nf        
0023         if F(i).isactive
0024             fprintf(F(i).fid, ' \n');
0025         end        
0026     end
0027         
0028 end

Generated on Wed 20-Sep-2006 12:43:11 by m2html © 2003

Contact us at files@mathworks.com