reorganize meta loop unrolling, add Trace (meta-unrolled), fix compilation issues in

the conjugation/adjunction stuff
This commit is contained in:
Benoit Jacob
2007-10-07 16:40:49 +00:00
parent 4fe78b8e10
commit 95b3316701
6 changed files with 102 additions and 23 deletions

View File

@@ -30,6 +30,5 @@ int main(int, char **)
cout << "Column 1 of m2 is:" << endl << m2.col(1) << endl;
cout << "The transpose of m2 is:" << endl << m2.transpose() << endl;
cout << "The matrix m2 with row 0 and column 1 removed is:" << endl << m2.minor(0,1) << endl;
return 0;
}