Package jline.lib.butools.dph
Class AcyclicDPHFromMGKt
-
- All Implemented Interfaces:
public final class AcyclicDPHFromMGKt
-
-
Method Summary
Modifier and Type Method Description final static MGRepresentationacyclicDPHFromMG(Matrix alpha, Matrix A, Double prec)Transforms a matrix-geometric representation to an acyclic DPH representation of the same size, if possible. final static MGRepresentationacyclicDPHFromMG(DoubleArray alpha, Matrix A, Double prec)Overload for DoubleArray alpha. -
-
Method Detail
-
acyclicDPHFromMG
final static MGRepresentation acyclicDPHFromMG(Matrix alpha, Matrix A, Double prec)
Transforms a matrix-geometric representation to an acyclic DPH representation of the same size, if possible.
- Parameters:
alpha- Initial vector of the distributionA- Matrix parameter of the distributionprec- Vector and matrix entries smaller than the precision are considered to be zeros.- Returns:
The MGRepresentation containing beta (initial probability vector of acyclic DPH) and B (transition probability matrix of acyclic DPH)
Note: Contrary to 'AcyclicPHFromME' of the 'ph' package, this procedure is not able to extend the size in order to obtain a Markovian initial vector. Raises an error if A has complex eigenvalues. In this case the transformation to an acyclic representation is not possible.
-
acyclicDPHFromMG
final static MGRepresentation acyclicDPHFromMG(DoubleArray alpha, Matrix A, Double prec)
Overload for DoubleArray alpha.
-
-
-
-