comparison scripts/plot/ezmesh.m @ 9040:dbd0c77e575e

Cleanup documentation file plot.texi Spellcheck Stylecheck (Mostly double spaces after periods)
author Rik <rdrider0-list@yahoo.com>
date Sun, 22 Mar 2009 14:40:24 -0700
parents e70789e0cd92
children 16f53d29049f
comparison
equal deleted inserted replaced
9039:51dc9691f23f 9040:dbd0c77e575e
23 ## @deftypefnx {Function File} {} ezmesh (@dots{}, @var{n}) 23 ## @deftypefnx {Function File} {} ezmesh (@dots{}, @var{n})
24 ## @deftypefnx {Function File} {} ezmesh (@dots{}, 'circ') 24 ## @deftypefnx {Function File} {} ezmesh (@dots{}, 'circ')
25 ## @deftypefnx {Function File} {} ezmesh (@var{h}, @dots{}) 25 ## @deftypefnx {Function File} {} ezmesh (@var{h}, @dots{})
26 ## @deftypefnx {Function File} {@var{h} =} ezmesh (@dots{}) 26 ## @deftypefnx {Function File} {@var{h} =} ezmesh (@dots{})
27 ## 27 ##
28 ## Plots the mesh defined by a function. @var{f} is a string, inline 28 ## Plots the mesh defined by a function. @var{f} is a string, inline
29 ## function or function handle with two arguments defining the function. By 29 ## function or function handle with two arguments defining the function. By
30 ## default the plot is over the domain @code{-2*pi < @var{x} < 2*pi} and 30 ## default the plot is over the domain @code{-2*pi < @var{x} < 2*pi} and
31 ## @code{-2*pi < @var{y} < 2*pi} with 60 points in each dimension. 31 ## @code{-2*pi < @var{y} < 2*pi} with 60 points in each dimension.
32 ## 32 ##
33 ## If @var{dom} is a two element vector, it represents the minimum and maximum 33 ## If @var{dom} is a two element vector, it represents the minimum and maximum
34 ## value of both @var{x} and @var{y}. If @var{dom} is a four element vector, 34 ## value of both @var{x} and @var{y}. If @var{dom} is a four element vector,
35 ## then the minimum and maximum value of @var{x} and @var{y} are specify 35 ## then the minimum and maximum value of @var{x} and @var{y} are specify
36 ## separately. 36 ## separately.
37 ## 37 ##
38 ## @var{n} is a scalar defining the number of points to use in each dimension. 38 ## @var{n} is a scalar defining the number of points to use in each dimension.
39 ## 39 ##