Mercurial > hg > octave-lyh
comparison scripts/plot/ezplot.m @ 14335:ce2b59a6d0e5
maint: periodic merge of stable to default.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sun, 05 Feb 2012 15:32:24 -0800 |
parents | 4506eade9f04 4d917a6a858b |
children | 78f57b14535c |
comparison
equal
deleted
inserted
replaced
14333:6dd710b73150 | 14335:ce2b59a6d0e5 |
---|---|
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 ## |
41 ## If two functions are passed as strings, inline functions or function | 41 ## If two functions are passed as strings, inline functions or function |
42 ## handles, then the parametric function | 42 ## handles, then the parametric function |
43 ## | 43 ## |