2008-01-14 07:38:48 +08:00
|
|
|
#include <Eigen/Core>
|
2010-03-09 03:34:24 +08:00
|
|
|
#include <iostream>
|
2008-01-14 07:38:48 +08:00
|
|
|
|
2023-12-06 05:22:55 +08:00
|
|
|
template <typename Derived>
|
|
|
|
|
Eigen::Block<Derived, 2, 2> topLeft2x2Corner(Eigen::MatrixBase<Derived>& m) {
|
2008-03-14 18:38:37 +08:00
|
|
|
return Eigen::Block<Derived, 2, 2>(m.derived(), 0, 0);
|
2008-01-14 07:38:48 +08:00
|
|
|
}
|
|
|
|
|
|
2023-12-06 05:22:55 +08:00
|
|
|
template <typename Derived>
|
|
|
|
|
const Eigen::Block<const Derived, 2, 2> topLeft2x2Corner(const Eigen::MatrixBase<Derived>& m) {
|
2011-02-07 01:43:01 +08:00
|
|
|
return Eigen::Block<const Derived, 2, 2>(m.derived(), 0, 0);
|
2008-01-14 07:38:48 +08:00
|
|
|
}
|
|
|
|
|
|
2023-12-06 05:22:55 +08:00
|
|
|
int main(int, char**) {
|
2021-12-08 03:57:38 +08:00
|
|
|
Eigen::Matrix3d m = Eigen::Matrix3d::Identity();
|
2023-12-06 05:22:55 +08:00
|
|
|
std::cout << topLeft2x2Corner(4 * m) << std::endl; // calls the const version
|
|
|
|
|
topLeft2x2Corner(m) *= 2; // calls the non-const version
|
2021-12-08 03:57:38 +08:00
|
|
|
std::cout << "Now the matrix m is:" << std::endl << m << std::endl;
|
2008-01-14 07:38:48 +08:00
|
|
|
return 0;
|
|
|
|
|
}
|