Matlab Help Index Technical Documentation Index

subplot_colorbar

NAME ^

subplot_title - displays a colorbar on the bottom of a set of subplots

SYNOPSIS ^

function colorbar_handle = subplot_colorbar(cmin, cmax)

DESCRIPTION ^

  subplot_title - displays a colorbar on the bottom of a set of subplots

 Usage: colorbar_handle = subplot_colorbar(cmin, cmax)

 Displays a colorbar at the bottom of a set of subplots.  Does not current
 use the correct endpoints.

 This function is part of froi, available from http://froi.sourceforge.net,
 and is governed under the terms of the Artistic License.

 $Id$

CROSS-REFERENCE INFORMATION ^

This function calls:

This function is called by:

SUBFUNCTIONS ^

SOURCE CODE ^

0001 function colorbar_handle = subplot_colorbar(cmin, cmax)
0002 %  subplot_title - displays a colorbar on the bottom of a set of subplots
0003 %
0004 % Usage: colorbar_handle = subplot_colorbar(cmin, cmax)
0005 %
0006 % Displays a colorbar at the bottom of a set of subplots.  Does not current
0007 % use the correct endpoints.
0008 %
0009 % This function is part of froi, available from http://froi.sourceforge.net,
0010 % and is governed under the terms of the Artistic License.
0011 %
0012 % $Id$
0013 
0014 ax = gca;
0015 fig = gcf;
0016 
0017 colorbar_handle = axes('position',[.1 .15 .8 .2],'Box','off','Visible','off');
0018 h = colorbar('horiz');
0019

Generated at 19:47:41 15-Oct-2003 by m2html © 2003