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, 0 insertions, 3 deletions
diff --git a/doc/snippets/MatrixBase_reshape.cpp b/doc/snippets/MatrixBase_reshape.cpp
deleted file mode 100644
index 549bd1007..000000000
--- a/doc/snippets/MatrixBase_reshape.cpp
+++ /dev/null
@@ -1,3 +0,0 @@
-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;