comparison scripts/plot/plot3.m @ 7001:8b0cfeb06365

[project @ 2007-10-10 18:02:59 by jwe]
author jwe
date Wed, 10 Oct 2007 18:03:02 +0000
parents 76e3d985ae56
children 93c65f2a5668
comparison
equal deleted inserted replaced
7000:e87f860624cc 7001:8b0cfeb06365
29 ## @noindent 29 ## @noindent
30 ## in which the arguments are taken to be the vertices of the points to 30 ## in which the arguments are taken to be the vertices of the points to
31 ## be plotted in three dimensions. If all arguments are vectors of the 31 ## be plotted in three dimensions. If all arguments are vectors of the
32 ## same length, then a single continuous line is drawn. If all arguments 32 ## same length, then a single continuous line is drawn. If all arguments
33 ## are matrices, then each column of the matrices is treated as a 33 ## are matrices, then each column of the matrices is treated as a
34 ## seperate line. No attempt is made to transpose the arguments to make 34 ## separate line. No attempt is made to transpose the arguments to make
35 ## the number of rows match. 35 ## the number of rows match.
36 ## 36 ##
37 ## If only two arguments are given, as 37 ## If only two arguments are given, as
38 ## 38 ##
39 ## @example 39 ## @example
59 ## @example 59 ## @example
60 ## plot3 (@var{x1}, @var{y1}, @var{z1}, @var{x2}, @var{y2}, @var{z2}, @dots{}) 60 ## plot3 (@var{x1}, @var{y1}, @var{z1}, @var{x2}, @var{y2}, @var{z2}, @dots{})
61 ## @end example 61 ## @end example
62 ## 62 ##
63 ## @noindent 63 ## @noindent
64 ## in which each set of three arguments is treated as a seperate line or 64 ## in which each set of three arguments is treated as a separate line or
65 ## set of lines in three dimensions. 65 ## set of lines in three dimensions.
66 ## 66 ##
67 ## To plot multiple one- or two-argument groups, separate each group 67 ## To plot multiple one- or two-argument groups, separate each group
68 ## with an empty format string, as 68 ## with an empty format string, as
69 ## 69 ##