Mercurial > hg > octave-lyh
comparison scripts/plot/mesh.m @ 17458:43e0b711d7e0
doc: Correct accidental capitalization @var{Z} in mesh/surf docstrings.
* scripts/plot/mesh.m, scripts/plot/meshc.m, scripts/plot/meshz.m,
scripts/plot/surf.m, scripts/plot/surfc.m, scripts/plot/waterfall.m:
Correct accidental capitalization @var{Z} in mesh/surf docstrings.
author | Rik <rik@octave.org> |
---|---|
date | Thu, 19 Sep 2013 15:22:26 -0700 |
parents | 68bcac3c043a |
children |
comparison
equal
deleted
inserted
replaced
17457:9e1ef7d2d21c | 17458:43e0b711d7e0 |
---|---|
32 ## given, then it is plotted over the meshgrid | 32 ## given, then it is plotted over the meshgrid |
33 ## @code{@var{x} = 1:columns (@var{z}), @var{y} = 1:rows (@var{z})}. | 33 ## @code{@var{x} = 1:columns (@var{z}), @var{y} = 1:rows (@var{z})}. |
34 ## Thus, columns of @var{z} correspond to different @var{x} values and rows | 34 ## Thus, columns of @var{z} correspond to different @var{x} values and rows |
35 ## of @var{z} correspond to different @var{y} values. | 35 ## of @var{z} correspond to different @var{y} values. |
36 ## | 36 ## |
37 ## The color of the mesh is computed by linearly scaling the @var{Z} values | 37 ## The color of the mesh is computed by linearly scaling the @var{z} values |
38 ## to fit the range of the current colormap. Use @code{caxis} and/or | 38 ## to fit the range of the current colormap. Use @code{caxis} and/or |
39 ## change the colormap to control the appearance. | 39 ## change the colormap to control the appearance. |
40 ## | 40 ## |
41 ## Optionally, the color of the mesh can be specified independently of @var{z} | 41 ## Optionally, the color of the mesh can be specified independently of @var{z} |
42 ## by supplying a color matrix, @var{c}. | 42 ## by supplying a color matrix, @var{c}. |