Home > mfiles > fatal.m

fatal

PURPOSE ^

fatal(message) - exits with a fatal error message.

SYNOPSIS ^

function fatal(message)

DESCRIPTION ^

 fatal(message) - exits with a fatal error message.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 % fatal(message) - exits with a fatal error message.
0002 
0003 % This file is part of the SaliencyToolbox - Copyright (C) 2006-2007
0004 % by Dirk B. Walther and the California Institute of Technology.
0005 % See the enclosed LICENSE.TXT document for the license agreement.
0006 % More information about this project is available at:
0007 % http://www.saliencytoolbox.net
0008 
0009 function fatal(message)
0010 
0011 error(sprintf('FATAL ERROR: %s',message));

Generated on Fri 07-Sep-2007 14:42:18 by m2html © 2003