From 16301287def7959ee9ba6fb10e99035adf5568f9 Mon Sep 17 00:00:00 2001 From: "Paul M. Sutter" Date: Tue, 26 Mar 2024 22:13:59 -0400 Subject: [PATCH] fixed bug where eigenvectors were printed in transposed order --- c_tools/stacking/pruneVoids.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/c_tools/stacking/pruneVoids.cpp b/c_tools/stacking/pruneVoids.cpp index af48acf..a82ea72 100644 --- a/c_tools/stacking/pruneVoids.cpp +++ b/c_tools/stacking/pruneVoids.cpp @@ -1195,13 +1195,13 @@ void outputVoids(string outputDir, string sampleName, string prefix, gsl_vector_get(outVoid.eval, 1), gsl_vector_get(outVoid.eval, 2), gsl_matrix_get(outVoid.evec, 0 ,0), - gsl_matrix_get(outVoid.evec, 0 ,1), - gsl_matrix_get(outVoid.evec, 0 ,2), gsl_matrix_get(outVoid.evec, 1 ,0), - gsl_matrix_get(outVoid.evec, 1 ,1), - gsl_matrix_get(outVoid.evec, 1 ,2), gsl_matrix_get(outVoid.evec, 2 ,0), + gsl_matrix_get(outVoid.evec, 0 ,1), + gsl_matrix_get(outVoid.evec, 1 ,1), gsl_matrix_get(outVoid.evec, 2 ,1), + gsl_matrix_get(outVoid.evec, 0 ,2), + gsl_matrix_get(outVoid.evec, 1 ,2), gsl_matrix_get(outVoid.evec, 2 ,2) );