aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_reshaped_all.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/snippets/MatrixBase_reshaped_all.cpp')
-rw-r--r--doc/snippets/MatrixBase_reshaped_all.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/doc/snippets/MatrixBase_reshaped_all.cpp b/doc/snippets/MatrixBase_reshaped_all.cpp
deleted file mode 100644
index a4841834f..000000000
--- a/doc/snippets/MatrixBase_reshaped_all.cpp
+++ /dev/null
@@ -1,4 +0,0 @@
-Matrix4i m = Matrix4i::Random();
-cout << "Here is the matrix m:" << endl << m << endl;
-cout << "Here is m(all).transpose():" << endl << m(all).transpose() << endl;
-cout << "Here is m.reshaped(fix<1>,AutoSize):" << endl << m.reshaped(fix<1>,AutoSize) << endl;