public class RdUniform extends Rd
| Constructor and Description |
|---|
RdUniform(RdGeneralizedVector gmvs)
RdUniform Constructor
|
| Modifier and Type | Method and Description |
|---|---|
double |
cumulative(double[] adblX)
Compute the Cumulative under the Distribution to the given Variaate Array
|
double |
density(double[] adblX)
Compute the Density under the Distribution at the given Variate Array
|
double |
incremental(double[] adblXLeft,
double[] adblXRight)
Compute the Incremental under the Distribution between the 2 Variate Arrays
|
RdGeneralizedVector |
measureSpace()
Retrieve the Vector Space Underlying the Measure
|
public RdUniform(RdGeneralizedVector gmvs) throws java.lang.Exception
gmvs - The Vector Space Underlying the Measurejava.lang.Exception - Thrown if the Inputs are Invalidpublic RdGeneralizedVector measureSpace()
public double cumulative(double[] adblX)
throws java.lang.Exception
Rdcumulative in class RdadblX - Variate Array to which the Cumulative is to be computedjava.lang.Exception - Thrown if the inputs are invalidpublic double incremental(double[] adblXLeft,
double[] adblXRight)
throws java.lang.Exception
Rdincremental in class RdadblXLeft - 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 double density(double[] adblX)
throws java.lang.Exception
Rd