Package jline.io

Class Ret.cacheXiFp

java.lang.Object
jline.io.Ret.cacheXiFp
Enclosing class:
Ret

public static class Ret.cacheXiFp extends Object
Represents the return type for the cache xi fixed-point algorithm computations. This class encapsulates the results including the xi terms, initial state probabilities, cache state probabilities, and the number of iterations.
  • Field Details

    • xi

      public Matrix xi
    • pi0

      public Matrix pi0
    • pij

      public Matrix pij
    • it

      public int it
  • Constructor Details

    • cacheXiFp

      public cacheXiFp(Matrix xi, Matrix pi0, Matrix pij, int it)
      Constructor for initializing the cacheXiFpReturn object.
      Parameters:
      xi - - Matrix representing the xi terms.
      pi0 - - Matrix representing the initial state probabilities.
      pij - - Matrix representing the cache state probabilities.
      it - - Integer representing the number of iterations.