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