HomeSort by relevance Sort by last modified time
    Searched refs:cwiseAbs (Results 1 - 25 of 36) sorted by null

1 2

  /external/eigen/doc/snippets/
MatrixBase_cwiseAbs.cpp 4 cout << m.cwiseAbs() << endl;
MatrixBase_colwise.cpp 5 << endl << m.cwiseAbs().colwise().maxCoeff() << endl;
MatrixBase_rowwise.cpp 5 << endl << m.cwiseAbs().rowwise().maxCoeff() << endl;
MatrixBase_all.cpp 2 Vector3f p0 = Vector3f::Random(), p1 = Vector3f::Random().cwiseAbs();
  /external/eigen/Eigen/src/plugins/
MatrixCwiseUnaryOps.h 21 cwiseAbs() const { return derived(); }
28 * \sa cwiseAbs()
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunctionAtomic.h 100 m_mu = e.cwiseAbs().maxCoeff();
109 const RealScalar F_norm = F.cwiseAbs().rowwise().sum().maxCoeff();
110 const RealScalar Fincr_norm = Fincr.cwiseAbs().rowwise().sum().maxCoeff();
122 const RealScalar P_norm = P.cwiseAbs().rowwise().sum().maxCoeff();
  /external/eigen/blas/
level1_real_impl.h 22 if(*incx==1) return vector(x,*n).cwiseAbs().sum();
23 else return vector(x,*n,std::abs(*incx)).cwiseAbs().sum();
level1_impl.h 60 if(*incx==1) vector(x,*n).cwiseAbs().maxCoeff(&ret);
61 else vector(x,*n,std::abs(*incx)).cwiseAbs().maxCoeff(&ret);
71 if(*incx==1) vector(x,*n).cwiseAbs().minCoeff(&ret);
72 else vector(x,*n,std::abs(*incx)).cwiseAbs().minCoeff(&ret);
  /external/eigen/Eigen/src/Eigenvalues/
MatrixBaseEigenvalues.h 155 return eigenvalues().cwiseAbs().maxCoeff();
SelfAdjointEigenSolver.h 413 RealScalar scale = mat.cwiseAbs().maxCoeff();
556 Scalar scale = mat.cwiseAbs().maxCoeff();
691 Scalar scale = mat.cwiseAbs().maxCoeff();
ComplexEigenSolver.h 320 m_eivalues.cwiseAbs().tail(n-i).minCoeff(&k);
ComplexSchur.h 291 RealScalar normt = t.cwiseAbs().sum();
  /external/eigen/test/
eigensolver_generalized_real.cpp 37 VERIFY_IS_EQUAL(eig.eigenvalues().imag().cwiseAbs().maxCoeff(), 0);
array_for_matrix.cpp 109 Scalar mid = (m1.cwiseAbs().minCoeff() + m1.cwiseAbs().maxCoeff())/Scalar(2);
138 VERIFY_IS_APPROX(u.template lpNorm<Infinity>(), u.cwiseAbs().maxCoeff());
139 VERIFY_IS_APPROX(u.template lpNorm<1>(), u.cwiseAbs().sum());
array.cpp 122 Scalar mid = (m1.cwiseAbs().minCoeff() + m1.cwiseAbs().maxCoeff())/Scalar(2);
  /external/eigen/Eigen/src/Core/
Dot.h 170 return pow(m.cwiseAbs().array().pow(p).sum(), RealScalar(1)/p);
179 return m.cwiseAbs().sum();
197 return m.cwiseAbs().maxCoeff();
StableNorm.h 21 Scalar maxCoeff = bl.cwiseAbs().maxCoeff();
198 return this->cwiseAbs().redux(internal::scalar_hypot_op<RealScalar>());
  /external/eigen/Eigen/src/QR/
ColPivHouseholderQR_MKL.h 73 m_maxpivot=m_qr.diagonal().cwiseAbs().maxCoeff(); \
FullPivHouseholderQR.h 398 return m_qr.diagonal().cwiseAbs().array().log().sum();
437 .cwiseAbs()
HouseholderQR.h 212 return m_qr.diagonal().cwiseAbs().array().log().sum();
  /external/eigen/test/eigen2/
eigen2_eigensolver.cpp 79 VERIFY_IS_APPROX(_evec.cwiseAbs(), normalized_eivec.cwiseAbs());
  /external/ceres-solver/internal/ceres/
incomplete_lq_factorization.cc 130 const double max_value = dense_row.head(num_entries).cwiseAbs().maxCoeff();
  /external/eigen/Eigen/src/Geometry/
OrthoMethods.h 140 src.cwiseAbs().maxCoeff(&maxi);
  /external/eigen/bench/
eig33.cpp 102 Scalar scale = mat.cwiseAbs()/*.template triangularView<Lower>()*/.maxCoeff();
  /external/eigen/unsupported/test/
matrix_function.cpp 115 RealScalar maxImagPartOfSpectrum = A.eigenvalues().imag().cwiseAbs().maxCoeff();

Completed in 295 milliseconds

1 2