2008-01-14 07:38:48 +08:00
|
|
|
#include <Eigen/Core>
|
|
|
|
USING_PART_OF_NAMESPACE_EIGEN
|
|
|
|
using namespace std;
|
|
|
|
|
2008-03-11 01:23:11 +08:00
|
|
|
template<typename Derived>
|
2008-02-29 21:56:40 +08:00
|
|
|
Eigen::Block<Derived, 2, 2>
|
2008-03-11 01:23:11 +08:00
|
|
|
topLeft2x2Corner(MatrixBase<Derived>& m)
|
2008-01-14 07:38:48 +08:00
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
2008-03-11 01:23:11 +08:00
|
|
|
template<typename Derived>
|
2008-02-29 21:56:40 +08:00
|
|
|
const Eigen::Block<Derived, 2, 2>
|
2008-03-11 01:23:11 +08:00
|
|
|
topLeft2x2Corner(const MatrixBase<Derived>& m)
|
2008-01-14 07:38:48 +08:00
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
|
|
|
int main(int, char**)
|
|
|
|
{
|
|
|
|
Matrix3d m = Matrix3d::identity();
|
|
|
|
cout << topLeft2x2Corner(4*m) << endl; // calls the const version
|
|
|
|
topLeft2x2Corner(m) *= 2; // calls the non-const version
|
|
|
|
cout << "Now the matrix m is:" << endl << m << endl;
|
|
|
|
return 0;
|
|
|
|
}
|