comparison scripts/plot/ezcontourf.m @ 11587:c792872f8942

all script files: untabify and strip trailing whitespace
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:35:29 -0500
parents fd0a3ac60b0e
children 5f0bb45e615c
comparison
equal deleted inserted replaced
11586:12df7854fa7c 11587:c792872f8942
21 ## @deftypefnx {Function File} {} ezcontourf (@dots{}, @var{dom}) 21 ## @deftypefnx {Function File} {} ezcontourf (@dots{}, @var{dom})
22 ## @deftypefnx {Function File} {} ezcontourf (@dots{}, @var{n}) 22 ## @deftypefnx {Function File} {} ezcontourf (@dots{}, @var{n})
23 ## @deftypefnx {Function File} {} ezcontourf (@var{h}, @dots{}) 23 ## @deftypefnx {Function File} {} ezcontourf (@var{h}, @dots{})
24 ## @deftypefnx {Function File} {@var{h} =} ezcontourf (@dots{}) 24 ## @deftypefnx {Function File} {@var{h} =} ezcontourf (@dots{})
25 ## 25 ##
26 ## Plots the filled contour lines of a function. @var{f} is a string, inline 26 ## Plots the filled contour lines of a function. @var{f} is a string, inline
27 ## function or function handle with two arguments defining the function. By 27 ## function or function handle with two arguments defining the function. By
28 ## default the plot is over the domain @code{-2*pi < @var{x} < 2*pi} and 28 ## default the plot is over the domain @code{-2*pi < @var{x} < 2*pi} and
29 ## @code{-2*pi < @var{y} < 2*pi} with 60 points in each dimension. 29 ## @code{-2*pi < @var{y} < 2*pi} with 60 points in each dimension.
30 ## 30 ##
31 ## If @var{dom} is a two element vector, it represents the minimum and maximum 31 ## If @var{dom} is a two element vector, it represents the minimum and maximum
32 ## value of both @var{x} and @var{y}. If @var{dom} is a four element vector, 32 ## value of both @var{x} and @var{y}. If @var{dom} is a four element vector,
33 ## then the minimum and maximum value of @var{x} and @var{y} are specify 33 ## then the minimum and maximum value of @var{x} and @var{y} are specify
34 ## separately. 34 ## separately.
35 ## 35 ##
36 ## @var{n} is a scalar defining the number of points to use in each dimension. 36 ## @var{n} is a scalar defining the number of points to use in each dimension.
37 ## 37 ##
38 ## The optional return value @var{h} provides a list of handles to the 38 ## The optional return value @var{h} provides a list of handles to the
39 ## the parts of the vector field (body, arrow and marker). 39 ## the parts of the vector field (body, arrow and marker).
40 ## 40 ##
41 ## @example 41 ## @example
42 ## @group 42 ## @group
43 ## f = @@(x,y) sqrt(abs(x .* y)) ./ (1 + x.^2 + y.^2); 43 ## f = @@(x,y) sqrt(abs(x .* y)) ./ (1 + x.^2 + y.^2);