eigen/doc/examples/class_FixedBlock.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
724 B
C++
Raw Normal View History

2008-01-14 07:38:48 +08:00
#include <Eigen/Core>
#include <iostream>
2008-01-14 07:38:48 +08:00
template <typename Derived>
Eigen::Block<Derived, 2, 2> topLeft2x2Corner(Eigen::MatrixBase<Derived>& m) {
return Eigen::Block<Derived, 2, 2>(m.derived(), 0, 0);
2008-01-14 07:38:48 +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
}
int main(int, char**) {
Eigen::Matrix3d m = Eigen::Matrix3d::Identity();
std::cout << topLeft2x2Corner(4 * m) << std::endl; // calls the const version
2008-01-14 07:38:48 +08:00
topLeft2x2Corner(m) *= 2; // calls the non-const version
std::cout << "Now the matrix m is:" << std::endl << m << std::endl;
2008-01-14 07:38:48 +08:00
return 0;
}