2008-03-03 18:52:44 +08:00
|
|
|
#include <Eigen/Core>
|
2010-03-09 03:34:24 +08:00
|
|
|
#include <iostream>
|
2010-04-23 06:27:13 +08:00
|
|
|
using namespace Eigen;
|
2008-03-03 18:52:44 +08:00
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
// define a custom template binary functor
|
2009-12-22 02:16:01 +08:00
|
|
|
template<typename Scalar> struct MakeComplexOp {
|
|
|
|
EIGEN_EMPTY_STRUCT_CTOR(MakeComplexOp)
|
2008-05-23 00:31:00 +08:00
|
|
|
typedef complex<Scalar> result_type;
|
|
|
|
complex<Scalar> operator()(const Scalar& a, const Scalar& b) const { return complex<Scalar>(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();
|
2008-07-08 15:56:01 +08:00
|
|
|
cout << m1.binaryExpr(m2, MakeComplexOp<double>()) << endl;
|
2008-03-03 18:52:44 +08:00
|
|
|
return 0;
|
|
|
|
}
|