eigen/doc/examples/class_FixedBlock.cpp

28 lines
697 B
C++
Raw Normal View History

2008-01-14 07:38:48 +08:00
#include <Eigen/Core>
#include <iostream>
using namespace Eigen;
2008-01-14 07:38:48 +08:00
using namespace std;
template<typename Derived>
Eigen::Block<Derived, 2, 2>
topLeft2x2Corner(MatrixBase<Derived>& m)
2008-01-14 07:38:48 +08:00
{
return Eigen::Block<Derived, 2, 2>(m.derived(), 0, 0);
2008-01-14 07:38:48 +08:00
}
template<typename Derived>
2011-02-07 01:43:01 +08:00
const Eigen::Block<const Derived, 2, 2>
topLeft2x2Corner(const MatrixBase<Derived>& m)
2008-01-14 07:38:48 +08:00
{
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
}
int main(int, char**)
{
Matrix3d m = Matrix3d::Identity();
2008-01-14 07:38:48 +08:00
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;
}