From 24409f3acdd987f2734cb3b67d5a78e1d70fd362 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sun, 29 Jan 2017 15:20:35 +0100 Subject: Use fix<> API to specify compile-time reshaped sizes. --- doc/snippets/MatrixBase_reshape.cpp | 3 --- doc/snippets/MatrixBase_reshape_int_int.cpp | 3 --- doc/snippets/MatrixBase_reshaped_fixed.cpp | 3 +++ doc/snippets/MatrixBase_reshaped_int_int.cpp | 3 +++ 4 files changed, 6 insertions(+), 6 deletions(-) delete mode 100644 doc/snippets/MatrixBase_reshape.cpp delete mode 100644 doc/snippets/MatrixBase_reshape_int_int.cpp create mode 100644 doc/snippets/MatrixBase_reshaped_fixed.cpp create mode 100644 doc/snippets/MatrixBase_reshaped_int_int.cpp (limited to 'doc/snippets') diff --git a/doc/snippets/MatrixBase_reshape.cpp b/doc/snippets/MatrixBase_reshape.cpp deleted file mode 100644 index 549bd1007..000000000 --- a/doc/snippets/MatrixBase_reshape.cpp +++ /dev/null @@ -1,3 +0,0 @@ -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 deleted file mode 100644 index 1169cdb2d..000000000 --- a/doc/snippets/MatrixBase_reshape_int_int.cpp +++ /dev/null @@ -1,3 +0,0 @@ -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_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; diff --git a/doc/snippets/MatrixBase_reshaped_int_int.cpp b/doc/snippets/MatrixBase_reshaped_int_int.cpp new file mode 100644 index 000000000..1169cdb2d --- /dev/null +++ b/doc/snippets/MatrixBase_reshaped_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