LTPDA_XTICKS set the input vector as the y-ticks of the current axis. function ltpda_xticks(v) M Hewitson 10-08-06 $Id: ltpda_xticks.html,v 1.1 2007/06/08 14:15:10 hewitson Exp $
0001 function ltpda_xticks(v) 0002 0003 % LTPDA_XTICKS set the input vector as the y-ticks of the current axis. 0004 % 0005 % function ltpda_xticks(v) 0006 % 0007 % M Hewitson 10-08-06 0008 % 0009 % $Id: ltpda_xticks.html,v 1.1 2007/06/08 14:15:10 hewitson Exp $ 0010 % 0011 0012 set(gca, 'Xtick', v); 0013 0014 % END