aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets
diff options
context:
space:
mode:
authorGravatar yoco <peter.xiau@gmail.com>2014-01-18 04:53:46 +0800
committerGravatar yoco <peter.xiau@gmail.com>2014-01-18 04:53:46 +0800
commit9c832fad60b8122ef9ef59a61a68a9927a204607 (patch)
tree7b7ab51bf2aca74454debcc622472652e4ee3788 /doc/snippets
parent1e1d0c15b5b9bf5ca43e3020aec7aa596e3a167c (diff)
add reshape() snippets
Diffstat (limited to 'doc/snippets')
-rw-r--r--doc/snippets/MatrixBase_reshape.cpp3
-rw-r--r--doc/snippets/MatrixBase_reshape_int_int.cpp3
2 files changed, 6 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;
diff --git a/doc/snippets/MatrixBase_reshape_int_int.cpp b/doc/snippets/MatrixBase_reshape_int_int.cpp
new file mode 100644
index 000000000..1169cdb2d
--- /dev/null
+++ b/doc/snippets/MatrixBase_reshape_int_int.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;