stacklbl
PURPOSE 
function stacklbl(axhandle,titl,ylab,[x,y]);
SYNOPSIS 
function stacklbl(axhandle,titl,ylab,x,y);
DESCRIPTION 
CROSS-REFERENCE INFORMATION 
This function calls:
This function is called by:
- demo DEMO demonstrates the use of TIMEPLT and STACKLBL.
- demomin minutes
- demomonth months
- demoyear DEMO demonstrates the use of TIMEPLT and STACKLBL.
- timeplt TIMEPLT time series stack plots with Gregorian Time labels on x axes
SOURCE CODE 
0001 function stacklbl(axhandle,titl,ylab,x,y);
0002
0003
0004
0005
0006
0007
0008
0009 if(~exist('x'))
0010 x=.05;
0011 end
0012 if(~exist('y'))
0013 y=.85;
0014 end
0015 axes(axhandle);...
0016 ylabel(ylab);...
0017 text(x,y,titl,'units','norm','color','white');
Generated on Wed 30-Nov-2005 15:41:45 by m2html © 2003