|
From: <kin...@us...> - 2004-03-01 22:10:23
|
Update of /cvsroot/teem/teem/src/ell In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19188/ell Modified Files: eigen.c Log Message: bug fixes relating to switch from column-major to row-major Index: eigen.c =================================================================== RCS file: /cvsroot/teem/teem/src/ell/eigen.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** eigen.c 1 Mar 2004 10:19:44 -0000 1.18 --- eigen.c 1 Mar 2004 21:58:55 -0000 1.19 *************** *** 212,215 **** --- 212,220 ---- ** (evec+0)[], (evec+3)[], and (evec+6)[] ** + ** NOTE: Even in the post-teem-1.7 switch from column-major to + ** row-major- its still the case that the eigenvectors are at + ** evec+0, evec+3, evec+6: this means that they USED to be the + ** "columns" of the matrix, and NOW they're the rows. + ** ** The eigenvalues (and associated eigenvectors) are sorted in ** descending order. |