LTPDA_YSCALE Set the Y scale of the current axis %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: LTPDA_YSCALE Set the Y scale of the current axis CALL: ltpda_yscale('scale') scale = 'lin' or 'log'; VERSION: $Id: ltpda_yscale.m,v 1.4 2007/07/16 12:52:20 ingo Exp $ HISTORY: 02-05-2004 M Hewitson Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 function ltpda_yscale(scale) 0002 % LTPDA_YSCALE Set the Y scale of the current axis 0003 % 0004 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0005 % 0006 % DESCRIPTION: LTPDA_YSCALE Set the Y scale of the current axis 0007 % 0008 % CALL: ltpda_yscale('scale') scale = 'lin' or 'log'; 0009 % 0010 % VERSION: $Id: ltpda_yscale.m,v 1.4 2007/07/16 12:52:20 ingo Exp $ 0011 % 0012 % HISTORY: 02-05-2004 M Hewitson 0013 % Creation 0014 % 0015 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0016 0017 set(gca, 'YScale', scale); 0018 0019 % END