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 $
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