Package jline.lib.butools.dph
Class PmfFromMGKt
-
- All Implemented Interfaces:
public final class PmfFromMGKt
-
-
Method Summary
Modifier and Type Method Description final static DoubleArraypmfFromMG(Matrix alpha, Matrix A, IntArray x)Returns the probability mass function of a matrix-geometric distribution. final static DoubleArraypmfFromMG(DoubleArray alpha, Matrix A, IntArray x)Overload for DoubleArray alpha. final static DoublepmfFromMG(Matrix alpha, Matrix A, Integer x)Overload for single integer x. final static DoublepmfFromMG(DoubleArray alpha, Matrix A, Integer x)Overload for DoubleArray alpha and single integer x. -
-
Method Detail
-
pmfFromMG
final static DoubleArray pmfFromMG(Matrix alpha, Matrix A, IntArray x)
Returns the probability mass 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 PMF.- Returns:
The probabilities that the matrix-geometrically distributed random variable takes the corresponding "x" values.
-
pmfFromMG
final static DoubleArray pmfFromMG(DoubleArray alpha, Matrix A, IntArray x)
Overload for DoubleArray alpha.
-
pmfFromMG
final static Double pmfFromMG(Matrix alpha, Matrix A, Integer x)
Overload for single integer x.
-
pmfFromMG
final static Double pmfFromMG(DoubleArray alpha, Matrix A, Integer x)
Overload for DoubleArray alpha and single integer x.
-
-
-
-