Mercurial > hg > octave-nkf
comparison scripts/plot/ezmesh.m @ 14359:7277fe922e99
doc: Use Octave preference for double quote in docstrings in scripts/
* interp1.m, interp2.m, interp3.m, interpn.m, profexplore.m, profile.m,
profshow.m, quadgk.m, lookfor.m, imagesc.m, bzip2.m, gzip.m, parseparams.m,
pkg.m, ancestor.m, caxis.m, ezmesh.m, ezmeshc.m, ezsurf.m, ezsurfc.m, hidden.m,
hold.m, patch.m, pie.m, pie3.m, quiver.m, quiver3.m, scatter3.m,
uicontextmenu.m, uicontrol.m, uipanel.m, uipushtool.m, uitoggletool.m,
uitoolbar.m, xlim.m, ylim.m, zlim.m, ismember.m, setxor.m, filter2.m, bicg.m,
demo.m, example.m, fail.m, test.m: Use Octave preference for double quote in
docstrings in scripts/ directory.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Mon, 13 Feb 2012 07:38:23 -0800 |
parents | ce2b59a6d0e5 |
children | 5d3a684236b0 |
comparison
equal
deleted
inserted
replaced
14358:adb352685ded | 14359:7277fe922e99 |
---|---|
19 ## -*- texinfo -*- | 19 ## -*- texinfo -*- |
20 ## @deftypefn {Function File} {} ezmesh (@var{f}) | 20 ## @deftypefn {Function File} {} ezmesh (@var{f}) |
21 ## @deftypefnx {Function File} {} ezmesh (@var{fx}, @var{fy}, @var{fz}) | 21 ## @deftypefnx {Function File} {} ezmesh (@var{fx}, @var{fy}, @var{fz}) |
22 ## @deftypefnx {Function File} {} ezmesh (@dots{}, @var{dom}) | 22 ## @deftypefnx {Function File} {} ezmesh (@dots{}, @var{dom}) |
23 ## @deftypefnx {Function File} {} ezmesh (@dots{}, @var{n}) | 23 ## @deftypefnx {Function File} {} ezmesh (@dots{}, @var{n}) |
24 ## @deftypefnx {Function File} {} ezmesh (@dots{}, 'circ') | 24 ## @deftypefnx {Function File} {} ezmesh (@dots{}, "circ") |
25 ## @deftypefnx {Function File} {} ezmesh (@var{h}, @dots{}) | 25 ## @deftypefnx {Function File} {} ezmesh (@var{h}, @dots{}) |
26 ## @deftypefnx {Function File} {@var{h} =} ezmesh (@dots{}) | 26 ## @deftypefnx {Function File} {@var{h} =} ezmesh (@dots{}) |
27 ## | 27 ## |
28 ## Plot the mesh defined by a function. @var{f} is a string, inline | 28 ## Plot the mesh defined by a function. @var{f} is a string, inline |
29 ## function or function handle with two arguments defining the function. By | 29 ## function or function handle with two arguments defining the function. By |
39 ## | 39 ## |
40 ## If three functions are passed, then plot the parametrically defined | 40 ## If three functions are passed, then plot the parametrically defined |
41 ## function @code{[@var{fx} (@var{s}, @var{t}), @var{fy} (@var{s}, @var{t}), | 41 ## function @code{[@var{fx} (@var{s}, @var{t}), @var{fy} (@var{s}, @var{t}), |
42 ## @var{fz} (@var{s}, @var{t})]}. | 42 ## @var{fz} (@var{s}, @var{t})]}. |
43 ## | 43 ## |
44 ## If the argument 'circ' is given, then the function is plotted over a disk | 44 ## If the argument "circ" is given, then the function is plotted over a disk |
45 ## centered on the middle of the domain @var{dom}. | 45 ## centered on the middle of the domain @var{dom}. |
46 ## | 46 ## |
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 ## |