Class Ricf.RicfResult

java.lang.Object
edu.cmu.tetrad.sem.Ricf.RicfResult
Enclosing class:
Ricf

public static class Ricf.RicfResult extends Object
RICF result.
  • Constructor Summary

    Constructors
    Constructor
    Description
    RicfResult(cern.colt.matrix.DoubleMatrix2D shat, cern.colt.matrix.DoubleMatrix2D lhat, cern.colt.matrix.DoubleMatrix2D bhat, cern.colt.matrix.DoubleMatrix2D ohat, int iterations, double diff, ICovarianceMatrix covMatrix)
    The result.
  • Method Summary

    Modifier and Type
    Method
    Description
    cern.colt.matrix.DoubleMatrix2D
    Returns the bhat matrix.
    int
    Returns the number of iterations.
    cern.colt.matrix.DoubleMatrix2D
    Returns the "lhat" matrix.
    cern.colt.matrix.DoubleMatrix2D
    Returns the ohat matrix.
    cern.colt.matrix.DoubleMatrix2D
    Retrieves the shat matrix.
    Returns a string representation of the RicfResult object.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • RicfResult

      public RicfResult(cern.colt.matrix.DoubleMatrix2D shat, cern.colt.matrix.DoubleMatrix2D lhat, cern.colt.matrix.DoubleMatrix2D bhat, cern.colt.matrix.DoubleMatrix2D ohat, int iterations, double diff, ICovarianceMatrix covMatrix)
      The result.
      Parameters:
      shat - The shat matrix.
      lhat - The laht matrix.
      bhat - The bhat matrix.
      ohat - The ohat matrix.
      iterations - The number of iterations.
      diff - The diff.
      covMatrix - The covariance matrix.
  • Method Details

    • toString

      public String toString()
      Returns a string representation of the RicfResult object.
      Overrides:
      toString in class Object
      Returns:
      The string representation of the RicfResult object.
    • getShat

      public cern.colt.matrix.DoubleMatrix2D getShat()
      Retrieves the shat matrix.
      Returns:
      The shat matrix.
    • getLhat

      public cern.colt.matrix.DoubleMatrix2D getLhat()
      Returns the "lhat" matrix.
      Returns:
      The "lhat" matrix.
    • getBhat

      public cern.colt.matrix.DoubleMatrix2D getBhat()
      Returns the bhat matrix.
      Returns:
      The bhat matrix.
    • getOhat

      public cern.colt.matrix.DoubleMatrix2D getOhat()
      Returns the ohat matrix.
      Returns:
      The ohat matrix.
    • getIterations

      public int getIterations()
      Returns the number of iterations.
      Returns:
      The number of iterations.