- Timestamp:
- 02/19/08 13:48:02 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
tests/test0.cpp
r18 r24 44 44 mat V = "1 2; 2 3"; 45 45 ldmat lV(V); 46 // cout << "ld:" << lV.to_mat() << "eye:"<< I <<endl; 46 ldmat ilV(V); 47 lV.inv(ilV); 48 cout << "ld:" << lV << "eye:"<< V*(ilV.to_mat()) <<endl; 47 49 48 50