Package edu.cmu.tetrad.sem
Class Ricf.RicfResult
java.lang.Object
edu.cmu.tetrad.sem.Ricf.RicfResult
- Enclosing class:
- Ricf
RICF result.
- 
Constructor SummaryConstructorsConstructorDescriptionRicfResult(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 SummaryModifier and TypeMethodDescriptioncern.colt.matrix.DoubleMatrix2DgetBhat()Returns the bhat matrix.intReturns the number of iterations.cern.colt.matrix.DoubleMatrix2DgetLhat()Returns the "lhat" matrix.cern.colt.matrix.DoubleMatrix2DgetOhat()Returns the ohat matrix.cern.colt.matrix.DoubleMatrix2DgetShat()Retrieves the shat matrix.toString()Returns a string representation of the RicfResult object.
- 
Constructor Details- 
RicfResultpublic 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- 
toStringReturns a string representation of the RicfResult object.
- 
getShatpublic cern.colt.matrix.DoubleMatrix2D getShat()Retrieves the shat matrix.- Returns:
- The shat matrix.
 
- 
getLhatpublic cern.colt.matrix.DoubleMatrix2D getLhat()Returns the "lhat" matrix.- Returns:
- The "lhat" matrix.
 
- 
getBhatpublic cern.colt.matrix.DoubleMatrix2D getBhat()Returns the bhat matrix.- Returns:
- The bhat matrix.
 
- 
getOhatpublic cern.colt.matrix.DoubleMatrix2D getOhat()Returns the ohat matrix.- Returns:
- The ohat matrix.
 
- 
getIterationspublic int getIterations()Returns the number of iterations.- Returns:
- The number of iterations.
 
 
-