|
SOLUTIONS
|
BUILT-IN MATHEMATICA SYMBOL
ListPointPlot3D
ListPointPlot3D[{{x1, y1, z1}, {x2, y2, z2}, ...}]
generates a 3D scatter plot of points with coordinates
.
ListPointPlot3D[array]
generates a 3D scatter plot of points with a 2D array of height values.
ListPointPlot3D[{data1, data2, ...}]
plots several collections of points, by default in different colors.
Details and OptionsDetails and Options
- ListPointPlot3D has the same options as Graphics3D, with the following additions and changes:
-
Axes True whether to draw axes BoxRatios {1,1,0.4} bounding 3D box ratios ColorFunction Automatic how to determine the color of points ColorFunctionScaling True whether to scale arguments to ColorFunction DataRange Automatic the range of x and y values to assume for data Filling None how to fill in stems for each point FillingStyle Automatic style to use for filling PlotRange {Full,Full,Automatic} the range of z or other values to include PlotRangePadding Automatic how much to pad the range of values PlotStyle Automatic graphics directives to specify the styles of points RegionFunction (True&) how to determine whether a point should be included - ListPointPlot3D[{data1, data2, ...}] by default uses different colors to indicate points from different lists.
- Interactive labeling can be specified for points or lists of points using Tooltip, StatusArea, or Annotation.
- The option setting Filling->Automatic shows stems for all points.
- ListPointPlot3D[array] by default takes the x and y coordinate values for each data point to be successive integers starting at 1.
- The elements of array can also be triples
, specifying heights
at explicit positions
. - In the default case with no explicit x and y given, the setting DataRange->{{xmin, xmax}, {ymin, ymax}} specifies the ranges of coordinate values to use.
- With the default setting DataRange->Automatic, ListPointPlot3D[{{a11, a12, a13}, ..., {an1, an2, an3}}] will assume that the data being given is
, rather than an
×3 array of height values. - ListPointPlot3D[list, DataRange->All] always takes list to represent an array of height values.
- array can be a SparseArray object.
- The arguments supplied to functions in MeshFunctions and RegionFunction are x, y, and z. Functions in ColorFunction are by default supplied with scaled versions of these arguments.
- ListPointPlot3D returns Graphics3D[data].
New in 6
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »





