aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples/class_FixedReshaped.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2017-02-11 15:31:28 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2017-02-11 15:31:28 +0100
commit83d6a529c3a917763b35aafe8cd5b3b7478fcee6 (patch)
tree931640b3d66c2cae526995c438eb64000dbae52f /doc/examples/class_FixedReshaped.cpp
parent24409f3acdd987f2734cb3b67d5a78e1d70fd362 (diff)
Use Eigen::fix<N> to pass compile-time sizes.
Diffstat (limited to 'doc/examples/class_FixedReshaped.cpp')
-rw-r--r--doc/examples/class_FixedReshaped.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/examples/class_FixedReshaped.cpp b/doc/examples/class_FixedReshaped.cpp
new file mode 100644
index 000000000..b6d4085de
--- /dev/null
+++ b/doc/examples/class_FixedReshaped.cpp
@@ -0,0 +1,22 @@
+#include <Eigen/Core>
+#include <iostream>
+using namespace Eigen;
+using namespace std;
+
+template<typename Derived>
+Eigen::Reshaped<Derived, 4, 2>
+reshape_helper(MatrixBase<Derived>& m)
+{
+ return Eigen::Reshaped<Derived, 4, 2>(m.derived());
+}
+
+int main(int, char**)
+{
+ MatrixXd m(2, 4);
+ m << 1, 2, 3, 4,
+ 5, 6, 7, 8;
+ MatrixXd n = reshape_helper(m);
+ cout << "matrix m is:" << endl << m << endl;
+ cout << "matrix n is:" << endl << n << endl;
+ return 0;
+}