Package jline.lib.butools.dph
Class CdfFromMGKt
-
- All Implemented Interfaces:
public final class CdfFromMGKt
-
-
Method Summary
Modifier and Type Method Description final static DoubleArraycdfFromMG(Matrix alpha, Matrix A, IntArray x)Returns the cumulative distribution function of a matrix-geometric distribution. final static DoubleArraycdfFromMG(DoubleArray alpha, Matrix A, IntArray x)Overload for DoubleArray alpha. final static DoublecdfFromMG(Matrix alpha, Matrix A, Integer x)Overload for single integer x. final static DoublecdfFromMG(DoubleArray alpha, Matrix A, Integer x)Overload for DoubleArray alpha and single integer x. -
-
Method Detail
-
cdfFromMG
final static DoubleArray cdfFromMG(Matrix alpha, Matrix A, IntArray x)
Returns the cumulative distribution function of a matrix-geometric distribution.
- Parameters:
alpha- The initial vector of the matrix-geometric distribution.A- The matrix parameter of the matrix-geometric distribution.x- Vector of non-negative integers at which to compute the CDF.- Returns:
The probabilities that the matrix-geometrically distributed random variable is less or equal to the corresponding "x" values.
-
cdfFromMG
final static DoubleArray cdfFromMG(DoubleArray alpha, Matrix A, IntArray x)
Overload for DoubleArray alpha.
-
cdfFromMG
final static Double cdfFromMG(Matrix alpha, Matrix A, Integer x)
Overload for single integer x.
-
cdfFromMG
final static Double cdfFromMG(DoubleArray alpha, Matrix A, Integer x)
Overload for DoubleArray alpha and single integer x.
-
-
-
-