2008-03-03 18:52:44 +08:00
|
|
|
#include <Eigen/Core>
|
2010-03-09 03:34:24 +08:00
|
|
|
#include <iostream>
|
2021-12-08 03:57:38 +08:00
|
|
|
|
|
|
|
|
using Eigen::Matrix4d;
|
2008-03-03 18:52:44 +08:00
|
|
|
|
|
|
|
|
// define a custom template binary functor
|
2009-12-22 02:16:01 +08:00
|
|
|
template<typename Scalar> struct MakeComplexOp {
|
|
|
|
|
EIGEN_EMPTY_STRUCT_CTOR(MakeComplexOp)
|
2021-12-08 03:57:38 +08:00
|
|
|
typedef std::complex<Scalar> result_type;
|
|
|
|
|
result_type operator()(const Scalar& a, const Scalar& b) const { return result_type(a,b); }
|
2008-03-03 18:52:44 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int main(int, char**)
|
|
|
|
|
{
|
2008-07-21 08:34:46 +08:00
|
|
|
Matrix4d m1 = Matrix4d::Random(), m2 = Matrix4d::Random();
|
2021-12-08 03:57:38 +08:00
|
|
|
std::cout << m1.binaryExpr(m2, MakeComplexOp<double>()) << std::endl;
|
2008-03-03 18:52:44 +08:00
|
|
|
return 0;
|
|
|
|
|
}
|