You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
412 B

  1. typedef Matrix<double,4,Dynamic> Matrix4Xd;
  2. Matrix4Xd M = Matrix4Xd::Random(4,5);
  3. Projective3d P(Matrix4d::Random());
  4. cout << "The matrix M is:" << endl << M << endl << endl;
  5. cout << "M.colwise().hnormalized():" << endl << M.colwise().hnormalized() << endl << endl;
  6. cout << "P*M:" << endl << P*M << endl << endl;
  7. cout << "(P*M).colwise().hnormalized():" << endl << (P*M).colwise().hnormalized() << endl << endl;