Mercurial > hg > octave-lyh
comparison scripts/plot/ndgrid.m @ 14373:d00900b3dc4b
doc: Use two spaces at start of sentence.
* ndgrid.m, uiwait.m, sprandn.m, sprandsym.m, quantile.m:
Use two spaces at start of sentence.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Thu, 16 Feb 2012 15:44:42 -0800 |
parents | f3d52523cde1 |
children | 558e1ce7247b |
comparison
equal
deleted
inserted
replaced
14372:3f6489feca1e | 14373:d00900b3dc4b |
---|---|
18 | 18 |
19 ## -*- texinfo -*- | 19 ## -*- texinfo -*- |
20 ## @deftypefn {Function File} {[@var{y1}, @var{y2}, @dots{}, @var{y}n] =} ndgrid (@var{x1}, @var{x2}, @dots{}, @var{x}n) | 20 ## @deftypefn {Function File} {[@var{y1}, @var{y2}, @dots{}, @var{y}n] =} ndgrid (@var{x1}, @var{x2}, @dots{}, @var{x}n) |
21 ## @deftypefnx {Function File} {[@var{y1}, @var{y2}, @dots{}, @var{y}n] =} ndgrid (@var{x}) | 21 ## @deftypefnx {Function File} {[@var{y1}, @var{y2}, @dots{}, @var{y}n] =} ndgrid (@var{x}) |
22 ## Given n vectors @var{x1}, @dots{} @var{x}n, @code{ndgrid} returns | 22 ## Given n vectors @var{x1}, @dots{} @var{x}n, @code{ndgrid} returns |
23 ## n arrays of dimension n. The elements of the i-th output argument | 23 ## n arrays of dimension n. The elements of the i-th output argument |
24 ## contains the elements of the vector @var{x}i repeated over all | 24 ## contains the elements of the vector @var{x}i repeated over all |
25 ## dimensions different from the i-th dimension. Calling ndgrid with | 25 ## dimensions different from the i-th dimension. Calling ndgrid with |
26 ## only one input argument @var{x} is equivalent of calling ndgrid with | 26 ## only one input argument @var{x} is equivalent of calling ndgrid with |
27 ## all n input arguments equal to @var{x}: | 27 ## all n input arguments equal to @var{x}: |
28 ## | 28 ## |
29 ## [@var{y1}, @var{y2}, @dots{}, @var{y}n] = ndgrid (@var{x}, @dots{}, @var{x}) | 29 ## [@var{y1}, @var{y2}, @dots{}, @var{y}n] = ndgrid (@var{x}, @dots{}, @var{x}) |
30 ## @seealso{meshgrid} | 30 ## @seealso{meshgrid} |
31 ## @end deftypefn | 31 ## @end deftypefn |
32 | 32 |
33 ## Author: Alexander Barth <abarth@marine.usf.edu> | 33 ## Author: Alexander Barth <abarth@marine.usf.edu> |
34 | 34 |