Package org.drip.measure.continuous
Class R1R1
java.lang.Object
org.drip.measure.continuous.R1R1
public abstract class R1R1
extends java.lang.Object
R1R1 implements the Base Abstract Class behind Bivariate R1 Distributions. It exports
Methods for Incremental, Cumulative, and Inverse Cumulative Distribution Densities.
- Module = Computational Core Module
- Library = Numerical Analysis Library
- Project = Rd Continuous/Discrete Probability Measures
- Package = R1 and Rd Continuous Random Measure
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description R1R1()
-
Method Summary
Modifier and Type Method Description abstract double
cumulative(double dblX, double dblY)
Compute the Cumulative under the Distribution to the given Variate Pairabstract double
density(double dblX, double dblY)
Compute the Density under the Distribution at the given Variate Pairabstract double
incremental(double dblXLeft, double dblYLeft, double dblXRight, double dblYRight)
Compute the Incremental under the Distribution between the Variate PairMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
R1R1
public R1R1()
-
-
Method Details
-
cumulative
public abstract double cumulative(double dblX, double dblY) throws java.lang.ExceptionCompute the Cumulative under the Distribution to the given Variate Pair- Parameters:
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 computed- Returns:
- The Cumulative under the Distribution to the given Variate Pair
- Throws:
java.lang.Exception
- Thrown if the Inputs are Invalid
-
incremental
public abstract double incremental(double dblXLeft, double dblYLeft, double dblXRight, double dblYRight) throws java.lang.ExceptionCompute the Incremental under the Distribution between the Variate Pair- Parameters:
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 computed- Returns:
- The Incremental under the Distribution between the Variate Pair
- Throws:
java.lang.Exception
- Thrown if the inputs are invalid
-
density
public abstract double density(double dblX, double dblY) throws java.lang.ExceptionCompute the Density under the Distribution at the given Variate Pair- Parameters:
dblX
- R^1 The Variate to which the Cumulative is to be computeddblY
- R^1 The Variate to which the Cumulative is to be computed- Returns:
- The Density under the Distribution at the given Variate Pair
- Throws:
java.lang.Exception
- Thrown if the Input is Invalid
-