aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-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
-rw-r--r--doc/snippets/MatrixBase_reshaped_fixed.cpp2
-rw-r--r--doc/snippets/MatrixBase_reshaped_int_int.cpp2
4 files changed, 7 insertions, 7 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;
}
diff --git a/doc/snippets/MatrixBase_reshaped_fixed.cpp b/doc/snippets/MatrixBase_reshaped_fixed.cpp
index 611205929..a268ee5ae 100644
--- a/doc/snippets/MatrixBase_reshaped_fixed.cpp
+++ b/doc/snippets/MatrixBase_reshaped_fixed.cpp
@@ -1,3 +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;
+cout << "Here is m.reshape(fix<2>,fix<8>):" << endl << m.reshaped(fix<2>,fix<8>) << endl;
diff --git a/doc/snippets/MatrixBase_reshaped_int_int.cpp b/doc/snippets/MatrixBase_reshaped_int_int.cpp
index 1169cdb2d..4486d8347 100644
--- a/doc/snippets/MatrixBase_reshaped_int_int.cpp
+++ b/doc/snippets/MatrixBase_reshaped_int_int.cpp
@@ -1,3 +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;
+cout << "Here is m.reshape(2, 8):" << endl << m.reshaped(2, 8) << endl;