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

/external/eigen/doc/snippets/
H A DMatrixBase_cwiseMin.cpp2 cout << v.cwiseMin(w) << endl;
/external/eigen/Eigen/src/plugins/
H A DMatrixCwiseBinaryOps.h78 cwiseMin(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const function
89 cwiseMin(const Scalar &other) const function
91 return cwiseMin(Derived::Constant(rows(), cols(), other));
/external/eigen/Eigen/src/Geometry/
H A DAlignedBox.h203 m_min = m_min.cwiseMin(p_n);
212 m_min = m_min.cwiseMin(b.m_min);
223 m_max = m_max.cwiseMin(b.m_max);
231 {return AlignedBox(m_min.cwiseMax(b.m_min), m_max.cwiseMin(b.m_max)); }
237 { return AlignedBox(m_min.cwiseMin(b.m_min), m_max.cwiseMax(b.m_max)); }
/external/eigen/test/
H A Darray_for_matrix.cpp118 VERIFY_IS_APPROX( (m1.array()<m2.array()).select(m1,m2), m1.cwiseMin(m2) );
187 VERIFY_IS_APPROX(MatrixType::Constant(rows,cols, minM1), m1.cwiseMin(MatrixType::Constant(rows,cols, minM1)));
188 VERIFY_IS_APPROX(m1, m1.cwiseMin(MatrixType::Constant(rows,cols, maxM1)));
194 VERIFY_IS_APPROX(MatrixType::Constant(rows,cols, minM1), m1.cwiseMin( minM1));
195 VERIFY_IS_APPROX(m1, m1.cwiseMin(maxM1));
196 VERIFY_IS_APPROX(-m1, (-m1).cwiseMin(-minM1));
H A Dblock.cpp18 VERIFY_IS_APPROX(m1.col(c1).cwiseMin(s1), m1.cwiseMin(s1).col(c1));
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,c2-c1+1));
H A Darray.cpp175 VERIFY_IS_APPROX( (m1<m2).select(m1,m2), m1.cwiseMin(m2) );
/external/eigen/bench/
H A DBenchTimer.h87 m_bests = m_bests.cwiseMin(m_times);
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorCostModel.h97 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorOpCost cwiseMin( function in class:Eigen::TensorOpCost
H A DTensorBase.h298 cwiseMin(Scalar threshold) const { function in class:Eigen::TensorBase
299 return cwiseMin(constant(threshold));
366 cwiseMin(const OtherDerived& other) const { function in class:Eigen::TensorBase

Completed in 215 milliseconds