LTPDA_XTICKS set the input vector as the y-ticks of the current axis. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: LTPDA_XTICKS set the input vector as the y-ticks of the current axis. CALL: ltpda_xticks(v) VERSION: $Id: ltpda_xticks.m,v 1.4 2007/07/16 12:52:20 ingo Exp $ HISTORY: 10-08-2006 M Hewitson Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 function ltpda_xticks(v) 0002 % LTPDA_XTICKS set the input vector as the y-ticks of the current axis. 0003 % 0004 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0005 % 0006 % DESCRIPTION: LTPDA_XTICKS set the input vector as the y-ticks of the current 0007 % axis. 0008 % 0009 % CALL: ltpda_xticks(v) 0010 % 0011 % VERSION: $Id: ltpda_xticks.m,v 1.4 2007/07/16 12:52:20 ingo Exp $ 0012 % 0013 % HISTORY: 10-08-2006 M Hewitson 0014 % Creation 0015 % 0016 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0017 0018 set(gca, 'Xtick', v); 0019 0020 % END