Home > matutils > print_error.m

print_error

PURPOSE ^

Print a message to stderr. By default this is a nice red

SYNOPSIS ^

function print_error( string )

DESCRIPTION ^

 Print a message to stderr.  By default this is a nice red
 color in the matlab window.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function print_error( string )
0002 % Print a message to stderr.  By default this is a nice red
0003 % color in the matlab window.
0004     stderr=2;
0005     fprintf(stderr,strcat(string,'\n'));
0006 
0007 end
0008

Generated on Sun 14-Jun-2015 17:12:45 by m2html © 2005