comparison scripts/plot/subplot.m @ 6448:2110cc251779

[project @ 2007-03-24 02:47:36 by jwe]
author jwe
date Sat, 24 Mar 2007 02:47:36 +0000
parents 0cc5ca7b1e91
children e6b528a3a2a9
comparison
equal deleted inserted replaced
6447:3f79532415b5 6448:2110cc251779
18 ## 02110-1301, USA. 18 ## 02110-1301, USA.
19 19
20 ## -*- texinfo -*- 20 ## -*- texinfo -*-
21 ## @deftypefn {Function File} {} subplot (@var{rows}, @var{cols}, @var{index}) 21 ## @deftypefn {Function File} {} subplot (@var{rows}, @var{cols}, @var{index})
22 ## @deftypefnx {Function File} {} subplot (@var{rcn}) 22 ## @deftypefnx {Function File} {} subplot (@var{rcn})
23 ## Sets @code{gnuplot} in multiplot mode and plots in location 23 ## Set up a plot grid with @var{cols} by @var{rows} subwindows and plot
24 ## given by index (there are @var{cols} by @var{rows} subwindows). 24 ## in location given by @var{index}.
25 ##
26 ## Input:
27 ##
28 ## @table @var
29 ## @item rows
30 ## Number of rows in subplot grid.
31 ##
32 ## @item columns
33 ## Number of columns in subplot grid.
34 ##
35 ## @item index
36 ## Index of subplot where to make the next plot.
37 ## @end table
38 ## 25 ##
39 ## If only one argument is supplied, then it must be a three digit value 26 ## If only one argument is supplied, then it must be a three digit value
40 ## specifying the location in digits 1 (rows) and 2 (columns) and the plot 27 ## specifying the location in digits 1 (rows) and 2 (columns) and the plot
41 ## index in digit 3. 28 ## index in digit 3.
42 ## 29 ##