org.math.plot.Plot3DPanel Class Reference

Inheritance diagram for org.math.plot.Plot3DPanel:

org.math.plot.PlotPanel List of all members.

Detailed Description

class for ascending compatibility

Definition at line 15 of file Plot3DPanel.java.

Public Member Functions

 Plot3DPanel ()
 Plot3DPanel (double[] min, double[] max, String[] axesScales, String[] axesLabels)
 Plot3DPanel (PlotCanvas _canvas, String legendOrientation)
 Plot3DPanel (PlotCanvas _canvas)
 Plot3DPanel (String legendOrientation)
int addScatterPlot (String name, Color color, double[][] XY)
int addScatterPlot (String name, Color color, double[] X, double[] Y, double[] Z)
int addScatterPlot (String name, double[][] XY)
int addScatterPlot (String name, double[] X, double[] Y, double[] Z)
int addLinePlot (String name, Color color, double[][] XY)
int addLinePlot (String name, Color color, double[] X, double[] Y, double[] Z)
int addLinePlot (String name, double[][] XY)
int addLinePlot (String name, double[] X, double[] Y, double[] Z)
int addBarPlot (String name, Color color, double[][] XY)
int addBarPlot (String name, Color color, double[] X, double[] Y, double[] Z)
int addBarPlot (String name, double[][] XY)
int addBarPlot (String name, double[] X, double[] Y, double[] Z)
int addBoxPlot (String name, Color c, double[][] XY, double[][] dX)
int addBoxPlot (String name, double[][] XY, double[][] dX)
int addBoxPlot (String name, Color c, double[][] XYdX)
int addBoxPlot (String name, double[][] XYdX)
int addHistogramPlot (String name, Color c, double[][] XY, double[][] dX)
int addHistogramPlot (String name, double[][] XY, double[][] dX)
int addHistogramPlot (String name, Color c, double[][] XYdX)
int addHistogramPlot (String name, double[][] XYdX)
int addHistogramPlot (String name, Color c, double[][] XY, int nX, int nY)
int addHistogramPlot (String name, double[][] XY, int nX, int nY)
int addHistogramPlot (String name, Color c, double[][] XY, double[] boundsX, double[] boundsY)
int addHistogramPlot (String name, double[][] XY, double[] boundsX, double[] boundsY)
int addHistogramPlot (String name, Color c, double[][] XY, double minX, double maxX, int nX, double minY, double maxY, int nY)
int addHistogramPlot (String name, double[][] XY, double minX, double maxX, int nX, double minY, double maxY, int nY)
int addGridPlot (String name, Color c, double[] X, double[] Y, double[][] Z)
int addGridPlot (String name, double[] X, double[] Y, double[][] Z)
int addGridPlot (String name, Color c, double[][] XYZMatrix)
int addGridPlot (String name, double[][] XYZMatrix)
int addCloudPlot (String name, Color color, double[][] sampleXYZ, int nX, int nY, int nZ)
int addCloudPlot (String name, double[][] sampleXYZ, int nX, int nY, int nZ)
Override int addPlot (String type, String name, Color c, double[]...XY)


Member Function Documentation

int org.math.plot.Plot3DPanel.addScatterPlot ( String  name,
Color  color,
double  XY[][] 
)

Adds a scatter plot (each data point is plotted as a single dot marker) to the current plot panel.

Parameters:
name Name for the plot, which will be used in the legend. (String)
color Plot color. (Color)
XY Array of triple double. For each triple, first one contains the X position of the data points, second contains Y position, third contains Z position.
Each array of the triple must be of the same length; if not a ArrayIndexOutOfBoundsException exception will be thrown.
Each data set must come in array of triple of double; if not a ArrayIndexOutOfBoundsException exception will be thrown.
Returns:
the index of the plot in the panel (int).
See also:
addLinePlot(String,Color,double[]...)

addBarPlot(String, Color, double[]...)

addBoxPlot(String, Color, double[][], double[][])

addHistogramPlot(String, Color, double[][], double[])

addStaircasePlot(String, Color, double[]...)

Definition at line 63 of file Plot3DPanel.java.

References org.math.plot.PlotPanel.plotCanvas.

Referenced by org.math.plot.Plot3DPanel.addPlot(), org.math.plot.Plot3DPanel.addScatterPlot(), org.math.plot.plots.ScatterPlot.main(), org.math.plot.PlotPanel.main(), org.math.plot.plotObjects.RasterImage.main(), and org.math.plot.plotObjects.Axis.main().

00063                                                                        {
00064         return ((Plot3DCanvas) plotCanvas).addScatterPlot(name, color, XY);
00065     }

int org.math.plot.Plot3DPanel.addLinePlot ( String  name,
Color  color,
double  XY[][] 
)

Adds a line plot (each data point is connected to the next one by a solid line) to the current plot panel.

Parameters:
name Name for the plot, which will be used in the legend. (String)
color Plot color. (Color)
XY Array of triple double. For each triple, first one contains the X position of the data points, second contains Y position, third contains Z position.
Each array of the triple must be of the same length; if not a ArrayIndexOutOfBoundsException exception will be thrown.
Each data set must come in array of triple of double; if not a ArrayIndexOutOfBoundsException exception will be thrown.
Returns:
the index of the plot in the panel (int).
See also:
addScatterPlot(String,Color,double[]...)

addBarPlot(String, Color, double[]...)

addBoxPlot(String, Color, double[]... )

addHistogramPlot(String, Color, double[]...)

addStaircasePlot(String, Color, double[]...)

Definition at line 102 of file Plot3DPanel.java.

References org.math.plot.PlotPanel.plotCanvas.

Referenced by org.math.plot.Plot3DPanel.addLinePlot(), org.math.plot.Plot3DPanel.addPlot(), org.math.plot.plots.LinePlot.main(), and org.math.plot.PlotPanel.main().

00102                                                                     {
00103         return ((Plot3DCanvas) plotCanvas).addLinePlot(name, color, XY);
00104     }

int org.math.plot.Plot3DPanel.addBarPlot ( String  name,
Color  color,
double  XY[][] 
)

Adds a bar plot (each data point is shown as a dot marker connected to the horizontal axis by a vertical line) to the current plot panel.

Parameters:
name Name for the plot, which will be used in the legend. (String)
color Plot color. (Color)
XY Array of triple double. For each triple, first one contains the X position of the data points, second contains Y position, third contains Z position.
Each array of the triple must be of the same length; if not a ArrayIndexOutOfBoundsException exception will be thrown.
Each data set must come in array of triple of double; if not a ArrayIndexOutOfBoundsException exception will be thrown.
Returns:
the index of the plot in the panel (int).
See also:
addScatterPlot(String,Color,double[]...)

addLinePlot(String, Color, double[]...)

addBoxPlot(String, Color, double[]... )

addHistogramPlot(String, Color, double[]...)

addStaircasePlot(String, Color, double[]...)

Definition at line 141 of file Plot3DPanel.java.

References org.math.plot.PlotPanel.plotCanvas.

Referenced by org.math.plot.Plot3DPanel.addBarPlot(), org.math.plot.Plot3DPanel.addPlot(), org.math.plot.plots.BarPlot.main(), and org.math.plot.PlotPanel.main().

00141                                                                    {
00142         return ((Plot3DCanvas) plotCanvas).addBarPlot(name, color, XY);
00143     }


The documentation for this class was generated from the following file:
Generated on Wed Sep 5 21:44:02 2007 for jmathplot by  doxygen 1.5.1