aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/Tutorial_reshaped_vs_resize_1.cpp
blob: e520e8e6b3871b3b6b900a6e772ea2e41a4d983f (plain)
1
2
3
4
5
MatrixXi m = Matrix4i::Random();
cout << "Here is the matrix m:" << endl << m << endl;
cout << "Here is m.reshaped(2, 8):" << endl << m.reshaped(2, 8) << endl;
m.resize(2,8);
cout << "Here is the matrix m after m.resize(2,8):" << endl << m << endl;