Home > m > plottools > ltpda_yscale.m

ltpda_yscale

PURPOSE ^

LTPDA_YSCALE Set the Y scale of the current axis

SYNOPSIS ^

function ltpda_yscale(scale)

DESCRIPTION ^

 LTPDA_YSCALE Set the Y scale of the current axis
 
 
 usage:  ltpda_yscale('scale')
 
 scale = 'lin' or 'log';
 
 M Hewitson  02-05-04
 
 $Id: ltpda_yscale.html,v 1.1 2007/06/08 14:15:10 hewitson Exp $

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function ltpda_yscale(scale)
0002 
0003 
0004 % LTPDA_YSCALE Set the Y scale of the current axis
0005 %
0006 %
0007 % usage:  ltpda_yscale('scale')
0008 %
0009 % scale = 'lin' or 'log';
0010 %
0011 % M Hewitson  02-05-04
0012 %
0013 % $Id: ltpda_yscale.html,v 1.1 2007/06/08 14:15:10 hewitson Exp $
0014 %
0015 %
0016 
0017 set(gca, 'YScale', scale);
0018 
0019 % END

Generated on Fri 08-Jun-2007 16:09:11 by m2html © 2003