2008-03-06 19:36:27 +08:00
|
|
|
#include <Eigen/Core>
|
2010-03-09 03:34:24 +08:00
|
|
|
#include <iostream>
|
2008-03-06 19:36:27 +08:00
|
|
|
|
2008-05-23 00:31:00 +08:00
|
|
|
// define a custom template unary functor
|
2008-03-06 19:36:27 +08:00
|
|
|
template <typename Scalar>
|
2008-05-23 00:31:00 +08:00
|
|
|
struct CwiseClampOp {
|
2008-04-03 19:10:17 +08:00
|
|
|
CwiseClampOp(const Scalar& inf, const Scalar& sup) : m_inf(inf), m_sup(sup) {}
|
|
|
|
|
const Scalar operator()(const Scalar& x) const { return x < m_inf ? m_inf : (x > m_sup ? m_sup : x); }
|
|
|
|
|
Scalar m_inf, m_sup;
|
2008-03-06 19:36:27 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int main(int, char**) {
|
2021-12-08 03:57:38 +08:00
|
|
|
Eigen::Matrix4d m1 = Eigen::Matrix4d::Random();
|
|
|
|
|
std::cout << m1 << std::endl
|
|
|
|
|
<< "becomes: " << std::endl
|
|
|
|
|
<< m1.unaryExpr(CwiseClampOp<double>(-0.5, 0.5)) << std::endl;
|
2008-03-06 19:36:27 +08:00
|
|
|
return 0;
|
|
|
|
|
}
|