public abstract class R1
extends java.lang.Object
Constructor and Description |
---|
R1() |
Modifier and Type | Method and Description |
---|---|
abstract double |
cumulative(double dblX)
Compute the cumulative under the distribution to the given value
|
abstract double |
density(double dblX)
Compute the Density under the Distribution at the given Variate
|
abstract Array2D |
histogram()
Retrieve the Univariate Weighted Histogram
|
abstract double |
incremental(double dblXLeft,
double dblXRight)
Compute the incremental under the distribution between the 2 variates
|
abstract double |
invCumulative(double dblX)
Compute the inverse cumulative under the distribution corresponding to the given value
|
abstract double |
mean()
Retrieve the Mean of the Distribution
|
abstract double |
variance()
Retrieve the Variance of the Distribution
|
public abstract double cumulative(double dblX) throws java.lang.Exception
dblX
- Variate to which the cumulative is to be computedjava.lang.Exception
- Thrown if the inputs are invalidpublic abstract double incremental(double dblXLeft, double dblXRight) throws java.lang.Exception
dblXLeft
- Left Variate to which the cumulative is to be computeddblXRight
- Right Variate to which the cumulative is to be computedjava.lang.Exception
- Thrown if the inputs are invalidpublic abstract double invCumulative(double dblX) throws java.lang.Exception
dblX
- Value corresponding to which the inverse cumulative is to be computedjava.lang.Exception
- Thrown if the input is invalidpublic abstract double density(double dblX) throws java.lang.Exception
dblX
- Variate at which the Density needs to be computedjava.lang.Exception
- Thrown if the input is invalidpublic abstract double mean()
public abstract double variance()
public abstract Array2D histogram()