Mercurial > hg > octave-lyh
comparison scripts/plot/ezplot.m @ 10821:693e22af08ae
Grammarcheck documentation of m-files
Add newlines between @item fields for readability.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Mon, 26 Jul 2010 21:25:36 -0700 |
parents | be55736a0783 |
children | a4f482e66b65 |
comparison
equal
deleted
inserted
replaced
10820:c44c786f87ba | 10821:693e22af08ae |
---|---|
30 ## the function is plotted over the domain @code{-2*pi < @var{x} < 2*pi} | 30 ## the function is plotted over the domain @code{-2*pi < @var{x} < 2*pi} |
31 ## with 500 points. | 31 ## with 500 points. |
32 ## | 32 ## |
33 ## If @var{f} has two variables then @code{@var{f}(@var{x},@var{y}) = 0} | 33 ## If @var{f} has two variables then @code{@var{f}(@var{x},@var{y}) = 0} |
34 ## is calculated over the meshed domain @code{-2*pi < @var{x} | @var{y} | 34 ## is calculated over the meshed domain @code{-2*pi < @var{x} | @var{y} |
35 ## < 2*pi} with 60 by 60 in the mesh. For example | 35 ## < 2*pi} with 60 by 60 in the mesh. For example: |
36 ## | 36 ## |
37 ## @example | 37 ## @example |
38 ## ezplot (@@(@var{x}, @var{y}) @var{x} .^ 2 - @var{y} .^ 2 - 1) | 38 ## ezplot (@@(@var{x}, @var{y}) @var{x} .^ 2 - @var{y} .^ 2 - 1) |
39 ## @end example | 39 ## @end example |
40 ## | 40 ## |