* complete the change norm2->squaredNorm in PartialRedux

* somehow the NICE_RANDOM stuff wasn't being used anymore and
  tests were sometimes failing again. Fixed by #including Eigen/Array
  instead of cherry-picking just Random.h.
* little fixes in the unaligned assert page
This commit is contained in:
Benoit Jacob
2008-12-07 21:40:53 +00:00
parent 09fd69d734
commit 069ecbb4ab
4 changed files with 9 additions and 12 deletions

View File

@@ -0,0 +1,3 @@
Matrix3d m = Matrix3d::Random();
cout << "Here is the matrix m:" << endl << m << endl;
cout << "Here is the square norm of each row:" << endl << m.rowwise().squaredNorm() << endl;