2008-03-03 18:52:44 +08:00
|
|
|
#include <Eigen/Core>
|
2008-06-03 17:43:59 +08:00
|
|
|
#include <Eigen/Array>
|
2008-03-03 18:52:44 +08:00
|
|
|
USING_PART_OF_NAMESPACE_EIGEN
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
// define a custom template binary functor
|
2008-05-23 00:31:00 +08:00
|
|
|
template<typename Scalar> struct MakeComplexOp EIGEN_EMPTY_STRUCT {
|
|
|
|
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;
|
|
|
|
}
|