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

1 2

  /external/eigen/doc/snippets/
MatrixBase_cwiseAbs.cpp 4 cout << m.cwiseAbs() << endl;
TopicAliasing_mult4.cpp 4 A = (B * A).cwiseAbs();
TopicAliasing_mult5.cpp 4 A = (B * A).eval().cwiseAbs();
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/doc/examples/
Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp 13 cout << "1-norm(m) = " << m.cwiseAbs().colwise().sum().maxCoeff()
16 cout << "infty-norm(m) = " << m.cwiseAbs().rowwise().sum().maxCoeff()
  /external/eigen/Eigen/src/plugins/
MatrixCwiseUnaryOps.h 26 EIGEN_DOC_UNARY_ADDONS(cwiseAbs,absolute value)
32 cwiseAbs() const { return CwiseAbsReturnType(derived()); }
41 /// \sa cwiseAbs()
  /external/eigen/Eigen/src/Core/
Dot.h 168 RealScalar w = n.cwiseAbs().maxCoeff();
190 RealScalar w = cwiseAbs().maxCoeff();
208 return pow(m.cwiseAbs().array().pow(p).sum(), RealScalar(1)/p);
218 return m.cwiseAbs().sum();
241 return m.cwiseAbs().maxCoeff();
ConditionEstimator.h 20 const RealVector v_abs = v.cwiseAbs();
105 v.real().cwiseAbs().maxCoeff(&v_max_abs_index);
StableNorm.h 20 Scalar maxCoeff = bl.cwiseAbs().maxCoeff();
215 return this->cwiseAbs().redux(internal::scalar_hypot_op<RealScalar>());
  /external/eigen/blas/
level1_real_impl.h 22 if(*incx==1) return make_vector(x,*n).cwiseAbs().sum();
23 else return make_vector(x,*n,std::abs(*incx)).cwiseAbs().sum();
level1_impl.h 60 if(*incx==1) make_vector(x,*n).cwiseAbs().maxCoeff(&ret);
61 else make_vector(x,*n,std::abs(*incx)).cwiseAbs().maxCoeff(&ret);
71 if(*incx==1) make_vector(x,*n).cwiseAbs().minCoeff(&ret);
72 else make_vector(x,*n,std::abs(*incx)).cwiseAbs().minCoeff(&ret);
  /external/eigen/test/
geo_orthomethods.cpp 55 VERIFY_IS_MUCH_SMALLER_THAN((mat3.adjoint() * mat3.colwise().cross(vec3)).diagonal().cwiseAbs().sum(), Scalar(1));
56 VERIFY_IS_MUCH_SMALLER_THAN((mat3.adjoint() * mat3.colwise().cross(Vector3::Random())).diagonal().cwiseAbs().sum(), Scalar(1));
58 VERIFY_IS_MUCH_SMALLER_THAN((vec3.adjoint() * mat3.colwise().cross(vec3)).cwiseAbs().sum(), Scalar(1));
59 VERIFY_IS_MUCH_SMALLER_THAN((vec3.adjoint() * Matrix3::Random().colwise().cross(vec3)).cwiseAbs().sum(), Scalar(1));
vectorwiseop.cpp 208 VERIFY_IS_APPROX(m1.cwiseAbs().colwise().sum(), m1.colwise().template lpNorm<1>());
209 VERIFY_IS_APPROX(m1.cwiseAbs().rowwise().sum(), m1.rowwise().template lpNorm<1>());
210 VERIFY_IS_APPROX(m1.cwiseAbs().colwise().maxCoeff(), m1.colwise().template lpNorm<Infinity>());
211 VERIFY_IS_APPROX(m1.cwiseAbs().rowwise().maxCoeff(), m1.rowwise().template lpNorm<Infinity>());
214 VERIFY_IS_APPROX(m1.cwiseAbs().colwise().sum().x(), m1.col(0).cwiseAbs().sum());
array_for_matrix.cpp 120 Scalar mid = (m1.cwiseAbs().minCoeff() + m1.cwiseAbs().maxCoeff())/Scalar(2);
140 RealScalar a = m1.cwiseAbs().mean();
141 VERIFY( ((m1.array()<-a).matrix() || (m1.array()>a).matrix()).count() == (m1.cwiseAbs().array()>a).count());
165 VERIFY_IS_APPROX(u.template lpNorm<Infinity>(), u.cwiseAbs().maxCoeff());
168 VERIFY_IS_APPROX(u.template lpNorm<1>(), u.cwiseAbs().sum());
eigensolver_selfadjoint.cpp 27 RealScalar scaling = m.cwiseAbs().maxCoeff();
31 VERIFY(eiSymm.eigenvalues().cwiseAbs().maxCoeff() <= (std::numeric_limits<RealScalar>::min)());
55 VERIFY(eiDirect.eigenvalues().cwiseAbs().maxCoeff() <= (std::numeric_limits<RealScalar>::min)());
eigensolver_generalized_real.cpp 41 VERIFY_IS_EQUAL(eig.eigenvalues().imag().cwiseAbs().maxCoeff(), 0);
svd_common.h 44 RealScalar scaling = m.cwiseAbs().maxCoeff();
47 VERIFY(sigma.cwiseAbs().maxCoeff() <= (std::numeric_limits<RealScalar>::min)());
93 if(computationOptions & ComputeFullV) VERIFY_IS_APPROX(svd.matrixV().cwiseAbs(), referenceSvd.matrixV().cwiseAbs());
  /external/eigen/Eigen/src/Eigenvalues/
MatrixBaseEigenvalues.h 155 return eigenvalues().cwiseAbs().maxCoeff();
ComplexEigenSolver.h 333 m_eivalues.cwiseAbs().tail(n-i).minCoeff(&k);
SelfAdjointEigenSolver.h 433 RealScalar scale = mat.cwiseAbs().maxCoeff();
611 mat.diagonal().cwiseAbs().maxCoeff(&i0);
642 Scalar scale = scaledMat.cwiseAbs().maxCoeff();
749 Scalar scale = scaledMat.cwiseAbs().maxCoeff();
    [all...]
  /external/eigen/Eigen/src/QR/
ColPivHouseholderQR_LAPACKE.h 71 m_maxpivot=m_qr.diagonal().cwiseAbs().maxCoeff(); \
  /external/eigen/bench/
eig33.cpp 95 Scalar scale = scaledMat.cwiseAbs()/*.template triangularView<Lower>()*/.maxCoeff();
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixExponential.h 218 const float l1norm = arg.cwiseAbs().colwise().sum().maxCoeff();
242 const double l1norm = arg.cwiseAbs().colwise().sum().maxCoeff();
275 const long double l1norm = arg.cwiseAbs().colwise().sum().maxCoeff();

Completed in 423 milliseconds

1 2