org.math.plot.plots.DensityLayerPlot Class Reference

Inheritance diagram for org.math.plot.plots.DensityLayerPlot:

org.math.plot.plots.LayerPlot org.math.plot.plots.Plot org.math.plot.plotObjects.Plotable org.math.plot.plotObjects.Noteable org.math.plot.plotObjects.Editable List of all members.

Detailed Description

Author:
Yann RICHET

Definition at line 16 of file DensityLayerPlot.java.

Public Member Functions

 DensityLayerPlot (Plot p, int a, double[] quantiles)
 DensityLayerPlot (Plot p, int a, double[][] quantiles)
int getAxe ()
void plot (AbstractDrawer draw, Color c)
Override void setData (double[][] d)
Override double[][] getData ()

Static Public Member Functions

static void main (String[] args)

Static Public Attributes

static int WIDTH = 2

Package Attributes

int axis
double[] constant_Q
double[][] Q


Constructor & Destructor Documentation

org.math.plot.plots.DensityLayerPlot.DensityLayerPlot ( Plot  p,
int  a,
double  quantiles[][] 
)

Build a quantile plot based on given plot. The quantile is drawn as a linear gradient from the base plot dots.

Parameters:
p base plot
a axis number of quantile : 0=X quantile, 1=Y quantile, 2=Z quantile
quantiles array of standard deviation values

Definition at line 36 of file DensityLayerPlot.java.

References org.math.plot.plots.DensityLayerPlot.axis, org.math.plot.plots.Plot.getData(), org.math.plot.plots.Plot.name, and org.math.plot.plots.DensityLayerPlot.Q.

00036                                                                      {
00037                 super("Density of " + p.name, p);
00038                 if (quantiles != null && quantiles.length > 0)
00039                         Array.checkRowDimension(quantiles, p.getData().length);
00040                 Q = quantiles;
00041                 axis = a;
00042         }


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