Package jline.api.mam

Class Map_varcountKt

    • 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 Double map_varcount(Matrix D0, Matrix D1, Double t) Computes the variance of the counts in a MAP over a time period t.
      final static Matrix map_varcount(Matrix D0, Matrix D1, Matrix t) Computes the variance of the counts in a MAP over multiple time periods.
      final static Double map_varcount(MatrixCell MAP, Double t) Computes the variance of the counts in a MAP over a time period t using a MatrixCell.
      final static Matrix map_varcount(MatrixCell MAP, Matrix t) Computes the variance of the counts in a MAP over multiple time periods using a MatrixCell.
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • map_varcount

         final static Double map_varcount(Matrix D0, Matrix D1, Double t)

        Computes the variance of the counts in a MAP over a time period t.

        This method calculates the variance of the number of events that occur in the MAP over the specified time interval t. It involves matrix operations that consider the MAP's transition structure and steady-state behavior.

        Parameters:
        D0 - the hidden transition matrix of the MAP
        D1 - the visible transition matrix of the MAP
        t - the time period over which to compute the variance of counts
        Returns:

        the variance of the counts over time t

      • map_varcount

         final static Matrix map_varcount(Matrix D0, Matrix D1, Matrix t)

        Computes the variance of the counts in a MAP over multiple time periods.

        This method calculates the variance for each time period specified in the matrix t.

        Parameters:
        D0 - the hidden transition matrix of the MAP
        D1 - the visible transition matrix of the MAP
        t - a matrix containing the time periods over which to compute the variance of counts
        Returns:

        a matrix containing the variance of counts for each time period in t

      • map_varcount

         final static Double map_varcount(MatrixCell MAP, Double t)

        Computes the variance of the counts in a MAP over a time period t using a MatrixCell.

        This method is a convenience overload that extracts the D0 and D1 matrices from the provided MatrixCell and calculates the variance of the counts over time t.

        Parameters:
        MAP - the MatrixCell representing the MAP, containing the D0 and D1 matrices
        t - the time period over which to compute the variance of counts
        Returns:

        the variance of the counts over time t

      • map_varcount

         final static Matrix map_varcount(MatrixCell MAP, Matrix t)

        Computes the variance of the counts in a MAP over multiple time periods using a MatrixCell.

        This method is a convenience overload that extracts the D0 and D1 matrices from the provided MatrixCell and calculates the variance of the counts over multiple time periods specified in the matrix t.

        Parameters:
        MAP - the MatrixCell representing the MAP, containing the D0 and D1 matrices
        t - a matrix containing the time periods over which to compute the variance of counts
        Returns:

        a matrix containing the variance of counts for each time period in t