comparison scripts/plot/pcolor.m @ 10793:be55736a0783

Grammarcheck the documentation from m-files.
author Rik <octave@nomad.inbox5.com>
date Sun, 18 Jul 2010 20:35:16 -0700
parents 16f53d29049f
children fd0a3ac60b0e
comparison
equal deleted inserted replaced
10792:91342260063e 10793:be55736a0783
15 ## You should have received a copy of the GNU General Public License 15 ## You should have received a copy of the GNU General Public License
16 ## along with Octave; see the file COPYING. If not, see 16 ## along with Octave; see the file COPYING. If not, see
17 ## <http://www.gnu.org/licenses/>. 17 ## <http://www.gnu.org/licenses/>.
18 18
19 ## -*- texinfo -*- 19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {} pcolor (@var{x}, @var{y}, @var{c}) 20 ## @deftypefn {Function File} {} pcolor (@var{x}, @var{y}, @var{c})
21 ## @deftypefnx {Function File} {} pcolor (@var{c}) 21 ## @deftypefnx {Function File} {} pcolor (@var{c})
22 ## Density plot for given matrices @var{x}, and @var{y} from @code{meshgrid} and 22 ## Density plot for given matrices @var{x}, and @var{y} from @code{meshgrid} and
23 ## a matrix @var{c} corresponding to the @var{x} and @var{y} coordinates of 23 ## a matrix @var{c} corresponding to the @var{x} and @var{y} coordinates of
24 ## the mesh's vertices. If @var{x} and @var{y} are vectors, then a typical vertex 24 ## the mesh's vertices. If @var{x} and @var{y} are vectors, then a typical
25 ## vertex
25 ## is (@var{x}(j), @var{y}(i), @var{c}(i,j)). Thus, columns of @var{c} 26 ## is (@var{x}(j), @var{y}(i), @var{c}(i,j)). Thus, columns of @var{c}
26 ## correspond to different @var{x} values and rows of @var{c} correspond 27 ## correspond to different @var{x} values and rows of @var{c} correspond
27 ## to different @var{y} values. 28 ## to different @var{y} values.
28 ## 29 ##
29 ## The @code{colormap} is scaled to the extents of @var{c}. 30 ## The @code{colormap} is scaled to the extents of @var{c}.