aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_reshaped_int_int.cpp
blob: 4486d8347eedcb33ef0a1ba0a6c66dc1200553f6 (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.reshaped(2, 8) << endl;