Class DTMCSolveKt

  • All Implemented Interfaces:

    
    public final class DTMCSolveKt
    
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final static Matrix dtmcSolve(Matrix P, Double prec) Computes the stationary solution of a discrete time Markov chain.
      final static Matrix dtmcSolve(Matrix P) Computes the stationary solution of a discrete time Markov chain.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • dtmcSolve

        @JvmOverloads() final static Matrix dtmcSolve(Matrix P, Double prec)

        Computes the stationary solution of a discrete time Markov chain.

        Parameters:
        P - The transition probability matrix of the Markov chain.
        prec - Numerical precision.
        Returns:

        The stationary probability vector (row vector).

      • dtmcSolve

        @JvmOverloads() final static Matrix dtmcSolve(Matrix P)

        Computes the stationary solution of a discrete time Markov chain.

        Parameters:
        P - The transition probability matrix of the Markov chain.
        Returns:

        The stationary probability vector (row vector).