/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
MatrixFunction.h | 60 return e.cwiseAbs().maxCoeff(); 82 const RealScalar F_norm = F.cwiseAbs().rowwise().sum().maxCoeff(); 83 const RealScalar Fincr_norm = Fincr.cwiseAbs().rowwise().sum().maxCoeff(); 95 const RealScalar P_norm = P.cwiseAbs().rowwise().sum().maxCoeff();
|
MatrixLogarithm.h | 243 RealScalar normTminusI = (T - MatrixType::Identity(T.rows(), T.rows())).cwiseAbs().colwise().sum().maxCoeff();
|
MatrixPower.h | 214 normIminusT = IminusT.cwiseAbs().colwise().sum().maxCoeff();
|
/external/eigen/unsupported/test/ |
matrix_function.cpp | 115 RealScalar maxImagPartOfSpectrum = A.eigenvalues().imag().cwiseAbs().maxCoeff();
|
/external/eigen/Eigen/src/Eigenvalues/ |
RealSchur.h | 258 Scalar scale = matrix.derived().cwiseAbs().maxCoeff(); 357 // Scalar norm = m_matT.upper().cwiseAbs().sum() 358 // + m_matT.bottomLeftCorner(size-1,size-1).diagonal().cwiseAbs().sum(); 361 norm += m_matT.col(j).segment(0, (std::min)(size,j+2)).cwiseAbs().sum();
|
ComplexSchur.h | 293 RealScalar normt = t.cwiseAbs().sum();
|
RealQZ.h | 271 m_normOfS += m_S.col(j).segment(0, (std::min)(size,j+2)).cwiseAbs().sum(); 272 m_normOfT += m_T.row(j).segment(j, size - j).cwiseAbs().sum();
|
EigenSolver.h | 468 norm += m_matT.row(j).segment((std::max)(j-1,Index(0)), size-(std::max)(j-1,Index(0))).cwiseAbs().sum();
|
/external/eigen/test/ |
cholesky.cpp | 23 return symm.cwiseAbs().colwise().sum().maxCoeff(); 264 if(ldltlo.vectorD().real().cwiseAbs().minCoeff()>RealScalar(0))
|
geo_hyperplane.cpp | 61 while(scaling.diagonal().cwiseAbs().minCoeff()<RealScalar(1e-4)) scaling.diagonal() = VectorType::Random();
|
lu.cpp | 16 return m.cwiseAbs().colwise().sum().maxCoeff();
|
array.cpp | 177 Scalar mid = (m1.cwiseAbs().minCoeff() + m1.cwiseAbs().maxCoeff())/Scalar(2);
|
geo_transformations.cpp | 233 } while (v3.cwiseAbs().minCoeff()<NumTraits<Scalar>::epsilon());
|
/external/eigen/Eigen/src/Geometry/ |
OrthoMethods.h | 152 src.cwiseAbs().maxCoeff(&maxi);
|
/external/eigen/Eigen/src/QR/ |
HouseholderQR.h | 249 return m_qr.diagonal().cwiseAbs().array().log().sum();
|
ColPivHouseholderQR.h | 461 return m_qr.diagonal().cwiseAbs().array().log().sum();
|
FullPivHouseholderQR.h | 438 return m_qr.diagonal().cwiseAbs().array().log().sum();
|
/external/eigen/Eigen/src/Core/ |
GlobalFunctions.h | 77 EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(abs,scalar_abs_op,absolute value,\sa ArrayBase::abs DOXCOMMA MatrixBase::cwiseAbs)
|
/external/eigen/Eigen/src/LU/ |
PartialPivLU.h | 522 m_l1_norm = m_lu.cwiseAbs().colwise().sum().maxCoeff();
|
FullPivLU.h | 497 m_l1_norm = m_lu.cwiseAbs().colwise().sum().maxCoeff(); [all...] |
/external/eigen/Eigen/src/SVD/ |
JacobiSVD.h | 676 RealScalar scale = matrix.cwiseAbs().maxCoeff(); 697 RealScalar maxDiagEntry = m_workMatrix.cwiseAbs().diagonal().maxCoeff(); [all...] |
BDCSVD.h | 261 RealScalar scale = matrix.cwiseAbs().maxCoeff(); [all...] |
/external/eigen/Eigen/src/Cholesky/ |
LDLT.h | 318 mat.diagonal().tail(size-k).cwiseAbs().maxCoeff(&index_of_biggest_in_corner);
|