Mercurial > hg > octave-lyh
comparison scripts/plot/ndgrid.m @ 9042:97aa01a85ea4
Merge documentation cleanup changes to main branch.
author | Rik <rdrider0-list@yahoo.com> |
---|---|
date | Wed, 25 Mar 2009 18:13:08 -0700 |
parents | dbd0c77e575e |
children | be55736a0783 |
comparison
equal
deleted
inserted
replaced
9019:12ca81f1fa99 | 9042:97aa01a85ea4 |
---|---|
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 ## |