Skip to content

Commit

Permalink
Remove print debugging statement
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgeiszler committed Apr 6, 2024
1 parent 937132c commit e6fdf10
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,6 @@ private List<RealVector> solveEigenProblem(RealMatrix sW, RealMatrix sB, int nEi
// Perform eigen decomposition on the target matrix
EigenDecomposition eigenDecomposition = new EigenDecomposition(targetMatrix);

for (int i = 0; i < eigenDecomposition.getRealEigenvalues().length; i++)
System.out.println(eigenDecomposition.getRealEigenvalue(i));

// Sort eigenvectors by the magnitude of their corresponding eigenvalues in descending order
List<Integer> sortedIndices = IntStream.range(0, eigenDecomposition.getRealEigenvalues().length)
.boxed()
Expand Down

0 comments on commit e6fdf10

Please sign in to comment.