aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_reshape.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/snippets/MatrixBase_reshape.cpp')
-rw-r--r--doc/snippets/MatrixBase_reshape.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/snippets/MatrixBase_reshape.cpp b/doc/snippets/MatrixBase_reshape.cpp
new file mode 100644
index 000000000..549bd1007
--- /dev/null
+++ b/doc/snippets/MatrixBase_reshape.cpp
@@ -0,0 +1,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;