Searched refs:maxCoeff (Results 1 - 25 of 53) sorted by last modified time

123

/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Ddecode_plc.c274 WebRtc_Word32 nHP, pHP, wNoisyHP, wPriodicHP, corr, minCorr, maxCoeff; local
504 maxCoeff = WebRtcSpl_MaxAbsValueW32(
509 while( maxCoeff > WEBRTC_SPL_WORD16_MAX )
511 maxCoeff = WEBRTC_SPL_RSHIFT_W32(maxCoeff, 1);
/external/eigen/Eigen/src/Cholesky/
H A DLDLT.h281 mat.diagonal().tail(size-k).cwiseAbs().maxCoeff(&index_of_biggest_in_corner);
510 // RealScalar tolerance = (max)(vectorD.array().abs().maxCoeff() *NumTraits<RealScalar>::epsilon(),RealScalar(1) / NumTraits<RealScalar>::highest());
/external/eigen/Eigen/src/Core/
H A DDenseBase.h403 typename internal::traits<Derived>::Scalar maxCoeff() const;
408 typename internal::traits<Derived>::Scalar maxCoeff(IndexType* row, IndexType* col) const;
412 typename internal::traits<Derived>::Scalar maxCoeff(IndexType* index) const;
H A DDot.h197 return m.cwiseAbs().maxCoeff();
H A DRedux.h321 * \sa DenseBase::sum(), DenseBase::minCoeff(), DenseBase::maxCoeff(), MatrixBase::colwise(), MatrixBase::rowwise()
348 DenseBase<Derived>::maxCoeff() const function in class:Eigen::DenseBase
H A DStableNorm.h21 Scalar maxCoeff = bl.cwiseAbs().maxCoeff();
23 if (maxCoeff>scale)
25 ssq = ssq * numext::abs2(scale/maxCoeff);
26 Scalar tmp = Scalar(1)/maxCoeff;
34 scale = maxCoeff;
39 // TODO if the maxCoeff is much much smaller than the current scale,
H A DVectorwiseOp.h127 EIGEN_MEMBER_FUNCTOR(maxCoeff, (Size-1)*NumTraits<Scalar>::AddCost);
299 * \sa DenseBase::maxCoeff() */
300 const typename ReturnType<internal::member_maxCoeff>::Type maxCoeff() const function in class:Eigen::VectorwiseOp
H A DVisitor.h73 * \sa minCoeff(Index*,Index*), maxCoeff(Index*,Index*), DenseBase::redux()
140 * \sa DenseBase::maxCoeff(Index*, Index*)
170 * \sa DenseBase::minCoeff(Index*), DenseBase::maxCoeff(Index*,Index*), DenseBase::visitor(), DenseBase::minCoeff()
187 * \sa DenseBase::minCoeff(IndexType*,IndexType*), DenseBase::maxCoeff(IndexType*,IndexType*), DenseBase::visitor(), DenseBase::minCoeff()
204 * \sa DenseBase::minCoeff(IndexType*,IndexType*), DenseBase::visitor(), DenseBase::maxCoeff()
209 DenseBase<Derived>::maxCoeff(IndexType* rowPtr, IndexType* colPtr) const function in class:Eigen::DenseBase
221 * \sa DenseBase::maxCoeff(IndexType*,IndexType*), DenseBase::minCoeff(IndexType*,IndexType*), DenseBase::visitor(), DenseBase::maxCoeff()
226 DenseBase<Derived>::maxCoeff(IndexType* index) const function in class:Eigen::DenseBase
/external/eigen/Eigen/src/Eigen2Support/
H A DSVD.h517 Scalar maxVal = m_sigma.cwise().abs().maxCoeff();
/external/eigen/Eigen/src/Eigenvalues/
H A DMatrixBaseEigenvalues.h127 // then we don't need to compute a maxCoeff() here, comparing the 1st and last ones is enough.
132 .maxCoeff()
155 return eigenvalues().cwiseAbs().maxCoeff();
H A DSelfAdjointEigenSolver.h413 RealScalar scale = mat.cwiseAbs().maxCoeff();
556 Scalar scale = mat.cwiseAbs().maxCoeff();
691 Scalar scale = mat.cwiseAbs().maxCoeff();
/external/eigen/Eigen/src/Geometry/
H A DOrthoMethods.h140 src.cwiseAbs().maxCoeff(&maxi);
/external/eigen/Eigen/src/LU/
H A DFullPivLU.h449 .maxCoeff(&row_of_biggest_in_corner, &col_of_biggest_in_corner);
H A DPartialPivLU.h253 = lu.col(k).tail(rows-k).cwiseAbs().maxCoeff(&row_of_biggest_in_col);
/external/eigen/Eigen/src/QR/
H A DColPivHouseholderQR.h445 RealScalar threshold_helper = m_colSqNorms.maxCoeff() * numext::abs2(NumTraits<Scalar>::epsilon()) / RealScalar(rows);
454 RealScalar biggest_col_sq_norm = m_colSqNorms.tail(cols-k).maxCoeff(&biggest_col_index);
H A DColPivHouseholderQR_MKL.h73 m_maxpivot=m_qr.diagonal().cwiseAbs().maxCoeff(); \
H A DFullPivHouseholderQR.h438 .maxCoeff(&row_of_biggest_in_corner, &col_of_biggest_in_corner);
/external/eigen/Eigen/src/SVD/
H A DJacobiSVD.h841 RealScalar scale = m_workMatrix.cwiseAbs().maxCoeff();
899 RealScalar maxRemainingSingularValue = m_singularValues.tail(m_diagSize-i).maxCoeff(&pos);
/external/eigen/bench/
H A Dbench_norm.cpp53 Scalar s = v.cwise().abs().maxCoeff();
H A Deig33.cpp102 Scalar scale = mat.cwiseAbs()/*.template triangularView<Lower>()*/.maxCoeff();
/external/eigen/blas/
H A Dlevel1_impl.h60 if(*incx==1) vector(x,*n).cwiseAbs().maxCoeff(&ret);
61 else vector(x,*n,std::abs(*incx)).cwiseAbs().maxCoeff(&ret);
/external/eigen/doc/examples/
H A DTutorial_ReductionsVisitorsBroadcasting_colwise.cpp12 << mat.colwise().maxCoeff() << std::endl;
H A DTutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp13 float maxNorm = mat.colwise().sum().maxCoeff(&maxIndex);
H A DTutorial_ReductionsVisitorsBroadcasting_rowwise.cpp12 << mat.rowwise().maxCoeff() << std::endl;
H A DTutorial_ReductionsVisitorsBroadcasting_visitors.cpp16 float max = m.maxCoeff(&maxRow, &maxCol);

Completed in 196 milliseconds

123