Home
last modified time | relevance | path

Searched refs:cwiseMin (Results 1 – 14 of 14) sorted by relevance

/external/eigen/Eigen/src/plugins/
DMatrixCwiseBinaryOps.h78 cwiseMin(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const in cwiseMin() function
89 cwiseMin(const Scalar &other) const in cwiseMin() function
91 return cwiseMin(Derived::Constant(rows(), cols(), other)); in cwiseMin()
/external/eigen/Eigen/src/Geometry/
DAlignedBox.h203 m_min = m_min.cwiseMin(p_n); in extend()
212 m_min = m_min.cwiseMin(b.m_min); in extend()
223 m_max = m_max.cwiseMin(b.m_max); in clamp()
231 {return AlignedBox(m_min.cwiseMax(b.m_min), m_max.cwiseMin(b.m_max)); } in intersection()
237 { return AlignedBox(m_min.cwiseMin(b.m_min), m_max.cwiseMax(b.m_max)); } in merged()
/external/eigen/test/
Darray_for_matrix.cpp118 VERIFY_IS_APPROX( (m1.array()<m2.array()).select(m1,m2), m1.cwiseMin(m2) ); in comparisons()
187 …VERIFY_IS_APPROX(MatrixType::Constant(rows,cols, minM1), m1.cwiseMin(MatrixType::Constant(rows,col… in cwise_min_max()
188 VERIFY_IS_APPROX(m1, m1.cwiseMin(MatrixType::Constant(rows,cols, maxM1))); in cwise_min_max()
194 VERIFY_IS_APPROX(MatrixType::Constant(rows,cols, minM1), m1.cwiseMin( minM1)); in cwise_min_max()
195 VERIFY_IS_APPROX(m1, m1.cwiseMin(maxM1)); in cwise_min_max()
196 VERIFY_IS_APPROX(-m1, (-m1).cwiseMin(-minM1)); in cwise_min_max()
Dblock.cpp18 VERIFY_IS_APPROX(m1.col(c1).cwiseMin(s1), m1.cwiseMin(s1).col(c1)); in block_real_only()
20 …VERIFY_IS_APPROX(m1.block(r1,c1,r2-r1+1,c2-c1+1).cwiseMin(s1), m1.cwiseMin(s1).block(r1,c1,r2-r1+1… in block_real_only()
Darray.cpp175 VERIFY_IS_APPROX( (m1<m2).select(m1,m2), m1.cwiseMin(m2) ); in comparisons()
/external/eigen/doc/snippets/
DMatrixBase_cwiseMin.cpp2 cout << v.cwiseMin(w) << endl;
/external/eigen/bench/
DBenchTimer.h87 m_bests = m_bests.cwiseMin(m_times); in stop()
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorCostModel.h97 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost cwiseMin( in cwiseMin() function
DTensorBase.h298 cwiseMin(Scalar threshold) const { in cwiseMin() function
299 return cwiseMin(constant(threshold)); in cwiseMin()
366 cwiseMin(const OtherDerived& other) const { in cwiseMin() function
DREADME.md924 ### <Operation> cwiseMin(Scalar threshold)
966 ### <Operation> cwiseMin(const OtherDerived& other)
/external/eigen/doc/
DCustomizingEigen_Plugins.dox49 void makeFloor(const MatrixBase<OtherDerived>& other) { derived() = derived().cwiseMin(other.derive…
DSparseQuickReference.dox171 sm1.cwiseMin(sm2);
DAsciiQuickReference.txt136 R.cwiseMin(P) // min(R, P)
DQuickReference.dox447 mat1.cwiseMin(mat2) mat1.cwiseMin(scalar)