aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_reshaped_fixed.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2017-01-29 15:20:35 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2017-01-29 15:20:35 +0100
commit24409f3acdd987f2734cb3b67d5a78e1d70fd362 (patch)
treeb88a1a068a4e3a573f67d1e315dc265326c200bc /doc/snippets/MatrixBase_reshaped_fixed.cpp
parent9036cda36484c4d7268b928b5976534c8ef3ce42 (diff)
Use fix<> API to specify compile-time reshaped sizes.
Diffstat (limited to 'doc/snippets/MatrixBase_reshaped_fixed.cpp')
-rw-r--r--doc/snippets/MatrixBase_reshaped_fixed.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/snippets/MatrixBase_reshaped_fixed.cpp b/doc/snippets/MatrixBase_reshaped_fixed.cpp
new file mode 100644
index 000000000..611205929
--- /dev/null
+++ b/doc/snippets/MatrixBase_reshaped_fixed.cpp
@@ -0,0 +1,3 @@
+Matrix4i m = Matrix4i::Random();
+cout << "Here is the matrix m:" << endl << m << endl;
+cout << "Here is m.reshape(fix<2>,fix<8>):" << endl << m.reshape(fix<2>,fix<8>) << endl;