Record Class Kci.EigenReturn

java.lang.Object
java.lang.Record
edu.cmu.tetrad.search.test.Kci.EigenReturn
Record Components:
D - A SimpleMatrix containing the eigenvalues in its diagonal. The order of the eigenvalues corresponds to the columns of the matrix V.
V - A SimpleMatrix where each column is an eigenvector of the original matrix. The columns are ordered to match the eigenvalues in D.
topEigenvalues - A list of doubles representing the top eigenvalues. This might be a subset of the eigenvalues in D, typically those with the largest magnitude or the most significance for a particular application.
Enclosing class:
Kci

public static record Kci.EigenReturn(org.ejml.simple.SimpleMatrix D, org.ejml.simple.SimpleMatrix V, List<Double> topEigenvalues) extends Record
A record representing the result of an eigenvalue decomposition.

The EigenReturn record encapsulates the diagonal matrix of eigenvalues (D), the matrix of eigenvectors (V), and a list containing the top eigenvalues.