comparison scripts/plot/meshgrid.m @ 9209:923c7cb7f13f

Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction. spellchecked all .txi and .texi files.
author Rik <rdrider0-list@yahoo.com>
date Sun, 17 May 2009 12:18:06 -0700
parents a1dbe9d80eee
children 16f53d29049f
comparison
equal deleted inserted replaced
9208:cb163402bf79 9209:923c7cb7f13f
20 ## -*- texinfo -*- 20 ## -*- texinfo -*-
21 ## @deftypefn {Function File} {[@var{xx}, @var{yy}, @var{zz}] =} meshgrid (@var{x}, @var{y}, @var{z}) 21 ## @deftypefn {Function File} {[@var{xx}, @var{yy}, @var{zz}] =} meshgrid (@var{x}, @var{y}, @var{z})
22 ## @deftypefnx {Function File} {[@var{xx}, @var{yy}] =} meshgrid (@var{x}, @var{y}) 22 ## @deftypefnx {Function File} {[@var{xx}, @var{yy}] =} meshgrid (@var{x}, @var{y})
23 ## @deftypefnx {Function File} {[@var{xx}, @var{yy}] =} meshgrid (@var{x}) 23 ## @deftypefnx {Function File} {[@var{xx}, @var{yy}] =} meshgrid (@var{x})
24 ## Given vectors of @var{x} and @var{y} and @var{z} coordinates, and 24 ## Given vectors of @var{x} and @var{y} and @var{z} coordinates, and
25 ## returning 3 arguments, return three dimensional arrays corresponding 25 ## returning 3 arguments, return three-dimensional arrays corresponding
26 ## to the @var{x}, @var{y}, and @var{z} coordinates of a mesh. When 26 ## to the @var{x}, @var{y}, and @var{z} coordinates of a mesh. When
27 ## returning only 2 arguments, return matrices corresponding to the 27 ## returning only 2 arguments, return matrices corresponding to the
28 ## @var{x} and @var{y} coordinates of a mesh. The rows of @var{xx} are 28 ## @var{x} and @var{y} coordinates of a mesh. The rows of @var{xx} are
29 ## copies of @var{x}, and the columns of @var{yy} are copies of @var{y}. 29 ## copies of @var{x}, and the columns of @var{yy} are copies of @var{y}.
30 ## If @var{y} is omitted, then it is assumed to be the same as @var{x}, 30 ## If @var{y} is omitted, then it is assumed to be the same as @var{x},