aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_reshape_int_int.cpp
blob: 1169cdb2db5e4a44c9a22b2924d17dc535c264f3 (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;