[Master Index]
[Index for /tools/hpmatlab/toolbox/matlab/graphics]
subplot
(/tools/hpmatlab/toolbox/matlab/graphics/subplot.m)
Function Synopsis
theAxis = subplot(nrows, ncols, thisPlot)
Help text
SUBPLOT Create axes in tiled positions.
SUBPLOT(m,n,p), or SUBPLOT(mnp), breaks the Figure window into
an m-by-n matrix of small axes, selects the p-th axes for
for the current plot, and returns the axis handle. The axes
are counted along the top row of the Figure window, then the
second row, etc. For example,
SUBPLOT(2,1,1), PLOT(income)
SUBPLOT(2,1,2), PLOT(outgo)
plots income on the top half of the window and outgo on the
bottom half.
SUBPLOT(m,n,p), if the axis already exists, makes it current.
SUBPLOT(H), where H is an axis handle, is another way of making
an axis current for subsequent plotting commands.
If a SUBPLOT specification causes a new axis to overlap an
existing axis, the existing axis is deleted. For example,
the statement SUBPLOT(1,1,1) deletes all existing smaller
axes in the Figure window and creates a new full-figure axis.
Cross-Reference Information
This function calls
- any /tools/hpmatlab/toolbox/matlab/ops/any.m
- axes /tools/hpmatlab/toolbox/matlab/graphics/axes.m
- delete /tools/hpmatlab/toolbox/matlab/general/delete.m
- else /tools/hpmatlab/toolbox/matlab/lang/else.m
- elseif /tools/hpmatlab/toolbox/matlab/lang/elseif.m
- end /tools/hpmatlab/toolbox/matlab/lang/end.m
- error /tools/hpmatlab/toolbox/matlab/lang/error.m
- eval /tools/hpmatlab/toolbox/matlab/lang/eval.m
- figure /tools/hpmatlab/toolbox/matlab/graphics/figure.m
- fix /tools/hpmatlab/toolbox/matlab/elfun/fix.m
- for /tools/hpmatlab/toolbox/matlab/lang/for.m
- gca /tools/hpmatlab/toolbox/matlab/graphics/gca.m
- gcf /tools/hpmatlab/toolbox/matlab/graphics/gcf.m
- get /tools/hpmatlab/toolbox/matlab/graphics/get.m
- i /tools/hpmatlab/toolbox/matlab/elmat/i.m
- if /tools/hpmatlab/toolbox/matlab/lang/if.m
- input /tools/hpmatlab/toolbox/matlab/lang/input.m
- isempty /tools/hpmatlab/toolbox/matlab/ops/isempty.m
- max /tools/hpmatlab/toolbox/matlab/datafun/max.m
- nargin /tools/hpmatlab/toolbox/matlab/elmat/nargin.m
- nargout /tools/hpmatlab/toolbox/matlab/elmat/nargout.m
- plot /tools/hpmatlab/toolbox/matlab/plotxy/plot.m
- rem /tools/hpmatlab/toolbox/matlab/elfun/rem.m
- return /tools/hpmatlab/toolbox/matlab/lang/return.m
- set /tools/hpmatlab/toolbox/matlab/graphics/set.m
- size /tools/hpmatlab/toolbox/matlab/general/size.m
- type /tools/hpmatlab/toolbox/matlab/general/type.m
- what /tools/hpmatlab/toolbox/matlab/general/what.m
This function is called by
- complex_exampleee2200/complex_example.m
- cztdemo /tools/hpmatlab/toolbox/signal/cztdemo.m
- enveloper ee2200/enveloper.m
- filtdemo /tools/hpmatlab/toolbox/signal/filtdemo.m
- freqs /tools/hpmatlab/toolbox/signal/freqs.m
- freqz /tools/hpmatlab/toolbox/signal/freqz.m
- inquire /tools/hpmatlab/toolbox/matlab/general/inquire.m
- pez ee2200/pez.m
Produced by mat2html on Wed Feb 8 12:25:18 EST 1995
Cross-Directory links are: ON