From 9c832fad60b8122ef9ef59a61a68a9927a204607 Mon Sep 17 00:00:00 2001 From: yoco Date: Sat, 18 Jan 2014 04:53:46 +0800 Subject: add reshape() snippets --- doc/snippets/MatrixBase_reshape.cpp | 3 +++ doc/snippets/MatrixBase_reshape_int_int.cpp | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 doc/snippets/MatrixBase_reshape.cpp create mode 100644 doc/snippets/MatrixBase_reshape_int_int.cpp (limited to 'doc/snippets') 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; -- cgit v1.2.3