aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples
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
parent24409f3acdd987f2734cb3b67d5a78e1d70fd362 (diff)
Use Eigen::fix<N> to pass compile-time sizes.
Diffstat (limited to 'doc/examples')
-rw-r--r--doc/examples/class_FixedReshaped.cpp (renamed from doc/examples/class_FixedReshape.cpp)4
-rw-r--r--doc/examples/class_Reshaped.cpp (renamed from doc/examples/class_Reshape.cpp)6
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/examples/class_FixedReshape.cpp b/doc/examples/class_FixedReshaped.cpp
index 40156a123..b6d4085de 100644
--- a/doc/examples/class_FixedReshape.cpp
+++ b/doc/examples/class_FixedReshaped.cpp
@@ -4,10 +4,10 @@ using namespace Eigen;
using namespace std;
template<typename Derived>
-Eigen::Reshape<Derived, 4, 2>
+Eigen::Reshaped<Derived, 4, 2>
reshape_helper(MatrixBase<Derived>& m)
{
- return Eigen::Reshape<Derived, 4, 2>(m.derived());
+ return Eigen::Reshaped<Derived, 4, 2>(m.derived());
}
int main(int, char**)
diff --git a/doc/examples/class_Reshape.cpp b/doc/examples/class_Reshaped.cpp
index b9abdc2d5..18fb45454 100644
--- a/doc/examples/class_Reshape.cpp
+++ b/doc/examples/class_Reshaped.cpp
@@ -4,10 +4,10 @@ using namespace std;
using namespace Eigen;
template<typename Derived>
-const Reshape<const Derived>
+const Reshaped<const Derived>
reshape_helper(const MatrixBase<Derived>& m, int rows, int cols)
{
- return Reshape<const Derived>(m.derived(), rows, cols);
+ return Reshaped<const Derived>(m.derived(), rows, cols);
}
int main(int, char**)
@@ -17,7 +17,7 @@ int main(int, char**)
2, 5, 8, 11,
3, 6, 9, 12;
cout << m << endl;
- auto n = reshape_helper(m, 2, 6);
+ Ref<const MatrixXd> n = reshape_helper(m, 2, 6);
cout << "Matrix m is:" << endl << m << endl;
cout << "Matrix n is:" << endl << n << endl;
}