Changeset 792 for trunk/test/svd_test.cc
- Timestamp:
- Mar 11, 2007, 1:14:24 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/svd_test.cc
r759 r792 60 60 Vtranspose.transpose(); 61 61 // Reconstructing A = U*S*Vtranspose 62 utility::matrix Areconstruct =svd.U();62 utility::matrix Areconstruct(svd.U()); 63 63 Areconstruct*=S; 64 64 Areconstruct*=Vtranspose; … … 83 83 } 84 84 85 utility::matrix Utranspose =svd.U();85 utility::matrix Utranspose(svd.U()); 86 86 Utranspose.transpose(); 87 87 Utranspose*=svd.U(); // Expect unity matrix
Note: See TracChangeset
for help on using the changeset viewer.