Package edu.cmu.tetrad.sem
Class Ricf.RicfResult
java.lang.Object
edu.cmu.tetrad.sem.Ricf.RicfResult
-
Constructor Summary
ConstructorsConstructorDescriptionRicfResult
(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 TypeMethodDescriptioncern.colt.matrix.DoubleMatrix2D
getBhat()
Returns the bhat matrix.int
Returns the number of iterations.cern.colt.matrix.DoubleMatrix2D
getLhat()
Returns the "lhat" matrix.cern.colt.matrix.DoubleMatrix2D
getOhat()
Returns the ohat matrix.cern.colt.matrix.DoubleMatrix2D
getShat()
Retrieves the shat matrix.toString()
Returns a string representation of the RicfResult object.
-
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
-
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.
-