comparison scripts/plot/meshdom.m @ 3368:a4cd1e9d9962

[project @ 1999-11-20 17:22:48 by jwe]
author jwe
date Sat, 20 Nov 1999 17:23:01 +0000
parents 8b262e771614
children f8dde1807dee
comparison
equal deleted inserted replaced
3367:0748b03c3510 3368:a4cd1e9d9962
15 ## You should have received a copy of the GNU General Public License 15 ## You should have received a copy of the GNU General Public License
16 ## along with Octave; see the file COPYING. If not, write to the Free 16 ## along with Octave; see the file COPYING. If not, write to the Free
17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA 17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA
18 ## 02111-1307, USA. 18 ## 02111-1307, USA.
19 19
20 ## usage: [xx, yy] = meshdom (x, y) 20 ## -*- texinfo -*-
21 ## @deftypefn {Function File} {} meshdom (@var{x}, @var{y})
22 ## Given vectors of @var{x} and @var{y} coordinates, return two matrices
23 ## corresponding to the @var{x} and @var{y} coordinates of the mesh.
24 ##
25 ## See the file @file{sombrero.m} for an example of using @code{mesh} and
26 ## @code{meshdom}.
21 ## 27 ##
22 ## Note: this function is provided for compatibility with older versions 28 ## Note: this function is provided for compatibility with older versions
23 ## of Matlab. You should use meshgrid() instead. 29 ## of @sc{Matlab}. You should use @code{meshgrid} instead.
30 ## @end deftypefn
24 31
25 ## Author: jwe 32 ## Author: jwe
26 33
27 function [xx, yy] = meshdom (x, y) 34 function [xx, yy] = meshdom (x, y)
28 35