public abstract class RdR1
extends java.lang.Object
| Constructor and Description |
|---|
RdR1() |
| Modifier and Type | Method and Description |
|---|---|
abstract double |
cumulative(double[] adblX,
double dblY)
Compute the Cumulative under the Distribution to the given Variate Array/Variate Combination
|
abstract double |
density(double[] adblX,
double dblY)
Compute the Density under the Distribution at the given Variate Array/Variate
|
abstract double |
incremental(double[] adblXLeft,
double dblYLeft,
double[] adblXRight,
double dblYRight)
Compute the Incremental under the Distribution between the Variate Array/Variate Pair
|
public abstract double cumulative(double[] adblX,
double dblY)
throws java.lang.Exception
adblX - R^d The Variate Array to which the Cumulative is to be computeddblY - R^1 The Variate to which the Cumulative is to be computedjava.lang.Exception - Thrown if the inputs are invalidpublic abstract double incremental(double[] adblXLeft,
double dblYLeft,
double[] adblXRight,
double dblYRight)
throws java.lang.Exception
adblXLeft - Left R^d Variate Array from which the Cumulative is to be computeddblYLeft - Left R^1 Variate from which the Cumulative is to be computedadblXRight - Right R^d Variate Array to which the Cumulative is to be computeddblYRight - Right R^1 Variate to which the Cumulative is to be computedjava.lang.Exception - Thrown if the inputs are invalidpublic abstract double density(double[] adblX,
double dblY)
throws java.lang.Exception
adblX - R^d The Variate Array to which the Cumulative is to be computeddblY - R^1 The Variate to which the Cumulative is to be computedjava.lang.Exception - Thrown if the Input is Invalid