Searched refs:m_sup (Results 1 - 1 of 1) sorted by relevance

/external/eigen/doc/examples/
H A Dclass_CwiseUnaryOp.cpp9 CwiseClampOp(const Scalar& inf, const Scalar& sup) : m_inf(inf), m_sup(sup) {}
10 const Scalar operator()(const Scalar& x) const { return x<m_inf ? m_inf : (x>m_sup ? m_sup : x); }
11 Scalar m_inf, m_sup; member in struct:CwiseClampOp

Completed in 335 milliseconds