LTPDA_ZAXIS Set the Z axis range of the current figure usage: ltpda_zaxis(x1,x2) M Hewitson 09-10-01 $Id: ltpda_zaxis.html,v 1.1 2007/06/08 14:15:10 hewitson Exp $
0001 function ltpda_zaxis(x1,x2) 0002 0003 % LTPDA_ZAXIS Set the Z axis range of the current figure 0004 % 0005 % usage: ltpda_zaxis(x1,x2) 0006 % 0007 % M Hewitson 09-10-01 0008 % 0009 % $Id: ltpda_zaxis.html,v 1.1 2007/06/08 14:15:10 hewitson Exp $ 0010 % 0011 % 0012 0013 set(gca, 'ZLim', [x1 x2]); 0014 0015 % END