mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-04 15:21:11 +00:00
fixed bug where eigenvectors were printed in transposed order
This commit is contained in:
parent
9794bb1973
commit
16301287de
1 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue