aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_reshaped_to_vector.cpp
blob: ee844c20374cf757bf26a9e30aedeb8b1c36b8a9 (plain)
1
2
3
4
Matrix4i m = Matrix4i::Random();
cout << "Here is the matrix m:" << endl << m << endl;
cout << "Here is m.reshaped().transpose():" << endl << m.reshaped().transpose() << endl;
cout << "Here is m.reshaped<RowMajor>():  " << endl << m.reshaped<RowMajor>() << endl;