Mercurial > hg > octave-lyh
comparison scripts/plot/ezmesh.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 | c4fa5e0b6193 4d917a6a858b |
children | 7277fe922e99 |
comparison
equal
deleted
inserted
replaced
14333:6dd710b73150 | 14335:ce2b59a6d0e5 |
---|---|
47 ## The optional return value @var{h} is a graphics handle to the created | 47 ## The optional return value @var{h} is a graphics handle to the created |
48 ## surface object. | 48 ## surface object. |
49 ## | 49 ## |
50 ## @example | 50 ## @example |
51 ## @group | 51 ## @group |
52 ## f = @@(x,y) sqrt(abs(x .* y)) ./ (1 + x.^2 + y.^2); | 52 ## f = @@(x,y) sqrt (abs (x .* y)) ./ (1 + x.^2 + y.^2); |
53 ## ezmesh (f, [-3, 3]); | 53 ## ezmesh (f, [-3, 3]); |
54 ## @end group | 54 ## @end group |
55 ## @end example | 55 ## @end example |
56 ## | 56 ## |
57 ## An example of a parametrically defined function is | 57 ## An example of a parametrically defined function is |