comparison 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
comparison
equal deleted inserted replaced
9757:95ad9c2a27e2 9758:09da0bd91412
34 ## If called with further input arguments @var{x}, @var{y} and @var{z} 34 ## If called with further input arguments @var{x}, @var{y} and @var{z}
35 ## which are three--dimensional arrays with the same size than @var{val} 35 ## which are three--dimensional arrays with the same size than @var{val}
36 ## then the volume data is taken at those given points. 36 ## then the volume data is taken at those given points.
37 ## 37 ##
38 ## The string input argument "noshare" is only for compatibility and 38 ## The string input argument "noshare" is only for compatibility and
39 ## has no effect. If given the string input argument 39 ## has no effect. If given the string input argument
40 ## "verbose" then print messages to the command line interface about the 40 ## "verbose" then print messages to the command line interface about the
41 ## current progress. 41 ## current progress.
42 ## 42 ##
43 ## If called with the input argument @var{col} which is a 43 ## If called with the input argument @var{col} which is a
44 ## three-dimensional array of the same size than @var{val} then take 44 ## three-dimensional array of the same size than @var{val} then take
54 ## isosurface geometry with the @command{patch} command. 54 ## isosurface geometry with the @command{patch} command.
55 ## 55 ##
56 ## For example 56 ## For example
57 ## 57 ##
58 ## @example 58 ## @example
59 ## @group
59 ## [x, y, z] = meshgrid (1:5, 1:5, 1:5); 60 ## [x, y, z] = meshgrid (1:5, 1:5, 1:5);
60 ## val = rand (5, 5, 5); 61 ## val = rand (5, 5, 5);
61 ## isosurface (x, y, z, val, .5); 62 ## isosurface (x, y, z, val, .5);
63 ## @end group
62 ## @end example 64 ## @end example
63 ## 65 ##
64 ## will directly draw a random isosurface geometry in a graphics window. 66 ## will directly draw a random isosurface geometry in a graphics window.
65 ## Another example for an isosurface geometry with different additional 67 ## Another example for an isosurface geometry with different additional
66 ## coloring 68 ## coloring