OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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 42 milliseconds