eigen/doc/examples/class_FixedBlock.cpp

27 lines
718 B
C++
Raw Normal View History

2008-01-14 07:38:48 +08:00
#include <Eigen/Core>
USING_PART_OF_NAMESPACE_EIGEN
using namespace std;
template<typename Scalar, typename Derived>
Eigen::Block<Derived, 2, 2>
2008-01-14 07:38:48 +08:00
topLeft2x2Corner(MatrixBase<Scalar, Derived>& m)
{
2008-03-05 01:08:23 +08:00
return Eigen::Block<Derived, 2, 2>(m.asArg(), 0, 0);
2008-01-14 07:38:48 +08:00
}
template<typename Scalar, typename Derived>
const Eigen::Block<Derived, 2, 2>
2008-01-14 07:38:48 +08:00
topLeft2x2Corner(const MatrixBase<Scalar, Derived>& m)
{
2008-03-05 01:08:23 +08:00
return Eigen::Block<Derived, 2, 2>(m.asArg(), 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;
}