change the implementation of BandMatrix to follow the BLAS/LAPACK storage scheme

This commit is contained in:
Gael Guennebaud
2009-07-15 17:00:49 +02:00
parent 587029a612
commit df6561a73f
4 changed files with 220 additions and 57 deletions

View File

@@ -55,7 +55,7 @@ template<typename MatrixType> void bandmatrix(MatrixType& m)
void test_bandmatrix()
{
for(int i = 0; i < g_repeat ; i++) {
BandMatrix<float,Dynamic,Dynamic,Dynamic> m(6,3,2);
BandMatrix<float,Dynamic,Dynamic,Dynamic> m(6,6,3,2);
CALL_SUBTEST( bandmatrix(m) );
}
}