Mercurial > hg > octave-lyh
comparison scripts/plot/contour.m @ 6895:76e3d985ae56
[project @ 2007-09-13 18:22:38 by jwe]
author | jwe |
---|---|
date | Thu, 13 Sep 2007 18:22:51 +0000 |
parents | b3d286e8a243 |
children | 93c65f2a5668 |
comparison
equal
deleted
inserted
replaced
6894:0a71f51ae624 | 6895:76e3d985ae56 |
---|---|
20 ## -*- texinfo -*- | 20 ## -*- texinfo -*- |
21 ## @deftypefn {Function File} {@var{c} =} contour (@var{z}) | 21 ## @deftypefn {Function File} {@var{c} =} contour (@var{z}) |
22 ## @deftypefnx {Function File} {@var{c} =} contour (@var{z}, @var{vn}) | 22 ## @deftypefnx {Function File} {@var{c} =} contour (@var{z}, @var{vn}) |
23 ## @deftypefnx {Function File} {@var{c} =} contour (@var{x}, @var{y}, @var{z}) | 23 ## @deftypefnx {Function File} {@var{c} =} contour (@var{x}, @var{y}, @var{z}) |
24 ## @deftypefnx {Function File} {@var{c} =} contour (@var{x}, @var{y}, @var{z}, @var{vn}) | 24 ## @deftypefnx {Function File} {@var{c} =} contour (@var{x}, @var{y}, @var{z}, @var{vn}) |
25 ## | |
26 ## Plot level curves (contour lines) of the matrix @var{z}, using the | 25 ## Plot level curves (contour lines) of the matrix @var{z}, using the |
27 ## contour matrix @var{c} computed by @code{contourc} from the same | 26 ## contour matrix @var{c} computed by @code{contourc} from the same |
28 ## arguments; see the latter for their interpretation. @var{c} is only | 27 ## arguments; see the latter for their interpretation. The set of |
29 ## returned if requested. For example: | 28 ## contour levels, @var{c}, is only returned if requested. For example: |
30 ## | 29 ## |
31 ## @example | 30 ## @example |
32 ## @group | 31 ## @group |
33 ## x = 0:2; | 32 ## x = 0:2; |
34 ## y = x; | 33 ## y = x; |