Package org.drip.measure.lebesgue
Class RdUniform
java.lang.Object
org.drip.measure.continuous.Rd
org.drip.measure.lebesgue.RdUniform
public class RdUniform extends Rd
RdUniform implements the Rd Lebesgue Measure Distribution that corresponds to a Uniform
Rd d-Volume Space.
- Module = Computational Core Module
- Library = Numerical Analysis Library
- Project = Rd Continuous/Discrete Probability Measures
- Package = Uniform Piece-wise Lebesgue Measure
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description RdUniform(RdGeneralizedVector gmvs)
RdUniform Constructor -
Method Summary
Modifier and Type Method Description double
cumulative(double[] adblX)
Compute the Cumulative under the Distribution to the given Variaate Arraydouble
density(double[] adblX)
Compute the Density under the Distribution at the given Variate Arraydouble
incremental(double[] adblXLeft, double[] adblXRight)
Compute the Incremental under the Distribution between the 2 Variate ArraysRdGeneralizedVector
measureSpace()
Retrieve the Vector Space Underlying the MeasureMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
RdUniform
RdUniform Constructor- Parameters:
gmvs
- The Vector Space Underlying the Measure- Throws:
java.lang.Exception
- Thrown if the Inputs are Invalid
-
-
Method Details
-
measureSpace
Retrieve the Vector Space Underlying the Measure- Returns:
- The Vector Space Underlying the Measure
-
cumulative
public double cumulative(double[] adblX) throws java.lang.ExceptionDescription copied from class:Rd
Compute the Cumulative under the Distribution to the given Variaate Array- Specified by:
cumulative
in classRd
- Parameters:
adblX
- Variate Array to which the Cumulative is to be computed- Returns:
- The Cumulative
- Throws:
java.lang.Exception
- Thrown if the inputs are invalid
-
incremental
public double incremental(double[] adblXLeft, double[] adblXRight) throws java.lang.ExceptionDescription copied from class:Rd
Compute the Incremental under the Distribution between the 2 Variate Arrays- Specified by:
incremental
in classRd
- Parameters:
adblXLeft
- Left Variate Array to which the Cumulative is to be computedadblXRight
- Right Variate Array to which the Cumulative is to be computed- Returns:
- The Incremental
- Throws:
java.lang.Exception
- Thrown if the inputs are invalid
-
density
public double density(double[] adblX) throws java.lang.ExceptionDescription copied from class:Rd
Compute the Density under the Distribution at the given Variate Array
-