2008-03-03 10:52:44 +00:00
|
|
|
#include <Eigen/Core>
|
2010-03-08 20:34:24 +01:00
|
|
|
#include <iostream>
|
2021-12-07 19:57:38 +00:00
|
|
|
|
|
|
|
|
using Eigen::Matrix4d;
|
2008-03-03 10:52:44 +00:00
|
|
|
|
|
|
|
|
// define a custom template binary functor
|
2009-12-21 18:16:01 +00:00
|
|
|
template <typename Scalar>
|
|
|
|
|
struct MakeComplexOp {
|
2021-12-07 19:57:38 +00: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 10:52:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int main(int, char**) {
|
2008-07-21 00:34:46 +00:00
|
|
|
Matrix4d m1 = Matrix4d::Random(), m2 = Matrix4d::Random();
|
2021-12-07 19:57:38 +00:00
|
|
|
std::cout << m1.binaryExpr(m2, MakeComplexOp<double>()) << std::endl;
|
2008-03-03 10:52:44 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|