mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-30 17:40:05 +08:00
86220784b6
1) Eigen2 co-installable with Eigen1 without conflict, without affecting programs including either. 2) #include<Eigen/Core> without the .h without conflict with the Core/ directory 3) Uniformize coding style of the CMakeLists.
27 lines
668 B
C++
27 lines
668 B
C++
#include <Eigen/Core>
|
|
USING_PART_OF_NAMESPACE_EIGEN
|
|
using namespace std;
|
|
|
|
template<typename Scalar, typename Derived>
|
|
Eigen::Column<Derived>
|
|
firstColumn(MatrixBase<Scalar, Derived>& m)
|
|
{
|
|
return Eigen::Column<Derived>(m.ref(), 0);
|
|
}
|
|
|
|
template<typename Scalar, typename Derived>
|
|
const Eigen::Column<Derived>
|
|
firstColumn(const MatrixBase<Scalar, Derived>& m)
|
|
{
|
|
return Eigen::Column<Derived>(m.ref(), 0);
|
|
}
|
|
|
|
int main(int, char**)
|
|
{
|
|
Matrix4d m = Matrix4d::identity();
|
|
cout << firstColumn(2*m) << endl; // calls the const version
|
|
firstColumn(m) *= 5; // calls the non-const version
|
|
cout << "Now the matrix m is:" << endl << m << endl;
|
|
return 0;
|
|
}
|