diff scripts/plot/isosurface.m @ 9758:09da0bd91412

Periodic grammar check of Octave documentation files to ensure common format Use double spaces after a period at start of new sentence Do not use @iftex blocks where @tex block is sufficient
author Rik <rdrider0-list@yahoo.com>
date Fri, 23 Oct 2009 09:28:14 -0700
parents 22ae6b3411a7
children 2884758e265b
line wrap: on
line diff
--- a/scripts/plot/isosurface.m
+++ b/scripts/plot/isosurface.m
@@ -36,7 +36,7 @@
 ## then the volume data is taken at those given points.
 ##
 ## The string input argument "noshare" is only for compatibility and
-## has no effect. If given the string input argument
+## has no effect.  If given the string input argument
 ## "verbose" then print messages to the command line interface about the
 ## current progress.
 ##
@@ -56,9 +56,11 @@
 ## For example
 ##
 ## @example
+## @group
 ## [x, y, z] = meshgrid (1:5, 1:5, 1:5);
 ## val = rand (5, 5, 5);
 ## isosurface (x, y, z, val, .5);
+## @end group
 ## @end example
 ##
 ## will directly draw a random isosurface geometry in a graphics window.