Mercurial > hg > octave-lyh
comparison scripts/plot/ezplot3.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} {} ezplot3 (@dots{}, @var{dom}) | 21 ## @deftypefnx {Function File} {} ezplot3 (@dots{}, @var{dom}) |
22 ## @deftypefnx {Function File} {} ezplot3 (@dots{}, @var{n}) | 22 ## @deftypefnx {Function File} {} ezplot3 (@dots{}, @var{n}) |
23 ## @deftypefnx {Function File} {} ezplot3 (@var{h}, @dots{}) | 23 ## @deftypefnx {Function File} {} ezplot3 (@var{h}, @dots{}) |
24 ## @deftypefnx {Function File} {@var{h} =} ezplot3 (@dots{}) | 24 ## @deftypefnx {Function File} {@var{h} =} ezplot3 (@dots{}) |
25 ## | 25 ## |
26 ## Plots in three-dimensions the curve defined parametrically. | 26 ## Plots in three-dimensions the curve defined parametrically. |
27 ## @var{fx}, @var{fy}, and @var{fz} are strings, inline functions | 27 ## @var{fx}, @var{fy}, and @var{fz} are strings, inline functions |
28 ## or function handles with one arguments defining the function. By | 28 ## or function handles with one arguments defining the function. By |
29 ## default the plot is over the domain @code{-2*pi < @var{x} < 2*pi} | 29 ## default the plot is over the domain @code{-2*pi < @var{x} < 2*pi} |
30 ## with 60 points. | 30 ## with 60 points. |
31 ## | 31 ## |
32 ## If @var{dom} is a two element vector, it represents the minimum and maximum | 32 ## If @var{dom} is a two element vector, it represents the minimum and maximum |
33 ## value of @var{t}. @var{n} is a scalar defining the number of points to use. | 33 ## value of @var{t}. @var{n} is a scalar defining the number of points to use. |
34 ## | 34 ## |
35 ## The optional return value @var{h} provides a list of handles to the | 35 ## The optional return value @var{h} provides a list of handles to the |
36 ## the parts of the vector field (body, arrow and marker). | 36 ## the parts of the vector field (body, arrow and marker). |
37 ## | 37 ## |
38 ## @example | 38 ## @example |
39 ## @group | 39 ## @group |
40 ## fx = @@(t) cos (t); | 40 ## fx = @@(t) cos (t); |