diff options
author | Gael Guennebaud <g.gael@free.fr> | 2017-01-29 15:20:35 +0100 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2017-01-29 15:20:35 +0100 |
commit | 24409f3acdd987f2734cb3b67d5a78e1d70fd362 (patch) | |
tree | b88a1a068a4e3a573f67d1e315dc265326c200bc /doc | |
parent | 9036cda36484c4d7268b928b5976534c8ef3ce42 (diff) |
Use fix<> API to specify compile-time reshaped sizes.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/snippets/MatrixBase_reshape.cpp | 3 | ||||
-rw-r--r-- | doc/snippets/MatrixBase_reshaped_fixed.cpp | 3 | ||||
-rw-r--r-- | doc/snippets/MatrixBase_reshaped_int_int.cpp (renamed from doc/snippets/MatrixBase_reshape_int_int.cpp) | 0 |
3 files changed, 3 insertions, 3 deletions
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_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_reshape_int_int.cpp b/doc/snippets/MatrixBase_reshaped_int_int.cpp index 1169cdb2d..1169cdb2d 100644 --- a/doc/snippets/MatrixBase_reshape_int_int.cpp +++ b/doc/snippets/MatrixBase_reshaped_int_int.cpp |