aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_reshape.cpp
blob: 549bd10079e20b6f80a6ad1d8436bf2b6c94e266 (plain)
1
2
3
Matrix4i m = Matrix4i::Random();
cout << "Here is the matrix m:" << endl << m << endl;
cout << "Here is m.reshape<2,8>():" << endl << m.reshape<2,8>() << endl;