Inheritance diagram for org.math.plot.plots.DensityLayerPlot:
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 |
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.
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 }