Searched defs:redux (Results 1 - 2 of 2) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DRedux.h316 /** \returns the result of a full redux operation on the whole matrix or vector using \a func
326 DenseBase<Derived>::redux(const Func& func) const function in class:Eigen::DenseBase
339 return this->redux(Eigen::internal::scalar_min_op<Scalar>());
348 return this->redux(Eigen::internal::scalar_max_op<Scalar>());
361 return this->redux(Eigen::internal::scalar_sum_op<Scalar>());
372 return Scalar(this->redux(Eigen::internal::scalar_sum_op<Scalar>())) / Scalar(this->size());
388 return this->redux(Eigen::internal::scalar_product_op<Scalar>());
H A DVectorwiseOp.h21 * \tparam MatrixType the type of the matrix we are applying the redux operation
23 * \tparam Direction indicates the direction of the redux (#Vertical or #Horizontal)
25 * This class represents an expression of a partial redux operator of a matrix.
143 { return mat.redux(m_functor); }
154 * \param Direction indicates the direction of the redux (#Vertical or #Horizontal)
247 * of the custom redux operator. Note that func must be an associative operator.
253 redux(const BinaryOp& func = BinaryOp()) const function in class:Eigen::VectorwiseOp

Completed in 146 milliseconds