aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2017-01-29 14:29:31 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2017-01-29 14:29:31 +0100
commit0e89baa5d895e40bae63c804cd3d3c568dca50f1 (patch)
tree5ca000a97a71774cffde96cbb409a24a152fdfff /doc/snippets
parentd024e9942d24e83478c1def5bbdf7f52895c5cc4 (diff)
parent15f273b63c1089df68129076de4f93cbd38aae5b (diff)
import yoco xiao's work on reshape
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;