HomeSort by relevance Sort by last modified time
    Searched refs:cwiseAbs (Results 1 - 25 of 32) 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/test/
array_for_matrix.cpp 45 VERIFY_IS_MUCH_SMALLER_THAN(m1.colwise().sum().sum() - m1.sum(), m1.cwiseAbs().maxCoeff());
46 VERIFY_IS_MUCH_SMALLER_THAN(m1.rowwise().sum().sum() - m1.sum(), m1.cwiseAbs().maxCoeff());
47 VERIFY_IS_MUCH_SMALLER_THAN(m1.colwise().sum() + m2.colwise().sum() - (m1+m2).colwise().sum(), (m1+m2).cwiseAbs().maxCoeff());
48 VERIFY_IS_MUCH_SMALLER_THAN(m1.rowwise().sum() - m2.rowwise().sum() - (m1-m2).rowwise().sum(), (m1-m2).cwiseAbs().maxCoeff());
110 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 120 Scalar mid = (m1.cwiseAbs().minCoeff() + m1.cwiseAbs().maxCoeff())/Scalar(2);
  /external/eigen/Eigen/src/Eigenvalues/
MatrixBaseEigenvalues.h 154 return eigenvalues().cwiseAbs().maxCoeff();
ComplexEigenSolver.h 306 m_eivalues.cwiseAbs().tail(n-i).minCoeff(&k);
SelfAdjointEigenSolver.h 411 RealScalar scale = matrix.cwiseAbs().maxCoeff();
554 Scalar scale = mat.cwiseAbs().maxCoeff();
688 Scalar scale = mat.cwiseAbs().maxCoeff();
ComplexSchur.h 246 RealScalar normt = t.cwiseAbs().sum();
RealSchur.h 277 // Scalar norm = m_matT.upper().cwiseAbs().sum()
278 // + m_matT.bottomLeftCorner(size-1,size-1).diagonal().cwiseAbs().sum();
281 norm += m_matT.row(j).segment((std::max)(j-1,Index(0)), size-(std::max)(j-1,Index(0))).cwiseAbs().sum();
  /external/eigen/Eigen/src/Core/
Dot.h 168 return pow(m.cwiseAbs().array().pow(p).sum(), RealScalar(1)/p);
177 return m.cwiseAbs().sum();
195 return m.cwiseAbs().maxCoeff();
StableNorm.h 19 Scalar max = bl.cwiseAbs().maxCoeff();
174 return this->cwiseAbs().redux(internal::scalar_hypot_op<RealScalar>());
  /external/eigen/Eigen/src/QR/
ColPivHouseholderQR_MKL.h 72 m_maxpivot=m_qr.diagonal().cwiseAbs().maxCoeff(); \
FullPivHouseholderQR.h 375 return m_qr.diagonal().cwiseAbs().array().log().sum();
407 .cwiseAbs()
494 RealScalar biggest_in_upper_part_of_c = c.topRows( dec().rank() ).cwiseAbs().maxCoeff();
495 RealScalar biggest_in_lower_part_of_c = c.bottomRows(rows-dec().rank()).cwiseAbs().maxCoeff();
HouseholderQR.h 186 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 116 RealScalar maxImagPartOfSpectrum = A.eigenvalues().imag().cwiseAbs().maxCoeff();

Completed in 542 milliseconds

1 2