Home > m > plottools > ltpda_allxaxis.m

ltpda_allxaxis

PURPOSE ^

LTPDA_ALLXSCALE Set all the x scales on the current figure.

SYNOPSIS ^

function ltpda_allxaxis(x1, x2)

DESCRIPTION ^

 LTPDA_ALLXSCALE Set all the x scales on the current figure.

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

 DESCRIPTION: LTPDA_ALLXAXIS Set all the xaxis ranges on the current figure.

 CALL:        ltpda_allxaxis(x1, x2)

 VERSION:     $Id: ltpda_allxaxis.m,v 1.6 2007/07/30 16:04:09 ingo Exp $

 HISTORY:     17-11-2002 M Hewitson
                 Creation.

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function ltpda_allxaxis(x1, x2)
0002 % LTPDA_ALLXSCALE Set all the x scales on the current figure.
0003 %
0004 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0005 %
0006 % DESCRIPTION: LTPDA_ALLXAXIS Set all the xaxis ranges on the current figure.
0007 %
0008 % CALL:        ltpda_allxaxis(x1, x2)
0009 %
0010 % VERSION:     $Id: ltpda_allxaxis.m,v 1.6 2007/07/30 16:04:09 ingo Exp $
0011 %
0012 % HISTORY:     17-11-2002 M Hewitson
0013 %                 Creation.
0014 %
0015 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0016 
0017 h = findobj(gcf, 'Type','axes', '-not', 'Tag', 'legend');
0018 
0019 set(h, 'XLim', [x1 x2])
0020 
0021 %
0022 % END

Generated on Mon 03-Sep-2007 12:12:34 by m2html © 2003