printmodel

PURPOSE ^

PRINTMODEL - save an image of current figure

SYNOPSIS ^

function printmodel(filename,format)

DESCRIPTION ^

PRINTMODEL - save an image of current figure

   the format is the same as the one accepted by the builtin imwrite routine.

   Usage:
      printmodel(filename,format)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function printmodel(filename,format)
0002 %PRINTMODEL - save an image of current figure
0003 %
0004 %   the format is the same as the one accepted by the builtin imwrite routine.
0005 %
0006 %   Usage:
0007 %      printmodel(filename,format)
0008 
0009 frame=getframe();image=frame2im(frame);
0010 imwrite(image,filename,format);

Generated on Sun 29-Mar-2009 20:22:55 by m2html © 2003