HomeSort by relevance Sort by last modified time
    Searched full:m_inf (Results 1 - 1 of 1) sorted by null

  /external/eigen/doc/examples/
class_CwiseUnaryOp.cpp 9 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 45 milliseconds