- Timestamp:
- Jun 9, 2005, 5:55:48 PM (19 years ago)
- Location:
- orxonox/trunk/src/util/newmat
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/newmat/eigen.cpp
r4566 r4567 35 35 int main(int argc, char **argv) { 36 36 37 cout << "start test: composing matrix" << endl; 38 37 39 38 SymmetricMatrix C(3); 40 39 … … 49 48 C(3,3) = 3; 50 49 51 cout << "matrix composed" << endl;52 53 54 //SymmetricMatrix X;55 //X << C;56 57 50 cout << "The symmetrix matrix C" << endl; 58 51 cout << setw(5) << setprecision(0) << C << endl; 59 52 60 Matrix 53 Matrix V(3,3); // for eigenvectors 61 54 DiagonalMatrix D(3); // for eigenvalues 62 55
Note: See TracChangeset
for help on using the changeset viewer.