public abstract class Rd
extends java.lang.Object
| Constructor and Description |
|---|
Rd() |
| Modifier and Type | Method and Description |
|---|---|
abstract double |
cumulative(double[] adblX)
Compute the Cumulative under the Distribution to the given Variaate Array
|
abstract double |
density(double[] adblX)
Compute the Density under the Distribution at the given Variate Array
|
abstract double |
incremental(double[] adblXLeft,
double[] adblXRight)
Compute the Incremental under the Distribution between the 2 Variate Arrays
|
public abstract double cumulative(double[] adblX)
throws java.lang.Exception
adblX - Variate Array to which the Cumulative is to be computedjava.lang.Exception - Thrown if the inputs are invalidpublic abstract double incremental(double[] adblXLeft,
double[] adblXRight)
throws java.lang.Exception
adblXLeft - Left Variate Array to which the Cumulative is to be computedadblXRight - Right Variate Array to which the Cumulative is to be computedjava.lang.Exception - Thrown if the inputs are invalidpublic abstract double density(double[] adblX)
throws java.lang.Exception
adblX - Variate Array at which the Density needs to be computedjava.lang.Exception - Thrown if the input is invalid