public abstract class R1R1
extends java.lang.Object
| Constructor and Description |
|---|
R1R1() |
| Modifier and Type | Method and Description |
|---|---|
abstract double |
cumulative(double dblX,
double dblY)
Compute the Cumulative under the Distribution to the given Variate Pair
|
abstract double |
density(double dblX,
double dblY)
Compute the Density under the Distribution at the given Variate Pair
|
abstract double |
incremental(double dblXLeft,
double dblYLeft,
double dblXRight,
double dblYRight)
Compute the Incremental under the Distribution between the Variate Pair
|
public abstract double cumulative(double dblX,
double dblY)
throws java.lang.Exception
dblX - R^1 The X Variate to which the Cumulative is to be computeddblY - R^1 The Y Variate to which the Cumulative is to be computedjava.lang.Exception - Thrown if the Inputs are Invalidpublic abstract double incremental(double dblXLeft,
double dblYLeft,
double dblXRight,
double dblYRight)
throws java.lang.Exception
dblXLeft - R^1 Left X Variate from which the Cumulative is to be computeddblYLeft - R^1 Left Y Variate from which the Cumulative is to be computeddblXRight - R^1 Right X Variate to which the Cumulative is to be computeddblYRight - R^1 Right Y Variate to which the Cumulative is to be computedjava.lang.Exception - Thrown if the inputs are invalidpublic abstract double density(double dblX,
double dblY)
throws java.lang.Exception
dblX - R^1 The Variate 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