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
7 lines
412 B
typedef Matrix<double,4,Dynamic> Matrix4Xd;
|
|
Matrix4Xd M = Matrix4Xd::Random(4,5);
|
|
Projective3d P(Matrix4d::Random());
|
|
cout << "The matrix M is:" << endl << M << endl << endl;
|
|
cout << "M.colwise().hnormalized():" << endl << M.colwise().hnormalized() << endl << endl;
|
|
cout << "P*M:" << endl << P*M << endl << endl;
|
|
cout << "(P*M).colwise().hnormalized():" << endl << (P*M).colwise().hnormalized() << endl << endl;
|