write_warning

PURPOSE ^

SYNOPSIS ^

function []=write_warning(p,txt,varargin)

DESCRIPTION ^

 []=write_warning(p,txt)
 
 write a warning to the warning file in the output directory

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function []=write_warning(p,txt,varargin)
0002 %
0003 % []=write_warning(p,txt)
0004 %
0005 % write a warning to the warning file in the output directory
0006 
0007 out=p.out_directory;
0008 F=fopen([out 'warnings'],'w');
0009 fprintf(F,[txt ' \n']);
0010 fclose(F);
0011

Generated on Thu 12-Jun-2008 12:06:44 by m2html © 2003