OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isApprox
(Results
51 - 60
of
60
) sorted by null
1
2
3
/external/eigen/unsupported/Eigen/src/Polynomials/
Companion.h
196
if( !
isApprox
( q, _Scalar(1) ) )
/external/eigen/Eigen/src/Core/
CwiseNullaryOp.h
302
if(!internal::
isApprox
(this->coeff(i, j), value, prec))
725
if(!internal::
isApprox
(this->coeff(i, j), static_cast<Scalar>(1), prec))
DenseBase.h
350
bool
isApprox
(const DenseBase<OtherDerived>& other,
/external/eigen/test/eigen2/
main.h
200
return a.
isApprox
(b, test_precision<typename Type1::Scalar>());
eigen2_geometry.cpp
95
VERIFY( (q2*q1).
isApprox
(q1*q2, largeEps) || !(q2 * q1 * v2).
isApprox
(
eigen2_geometry_with_eigen2_prefix.cpp
97
VERIFY( (q2*q1).
isApprox
(q1*q2, largeEps) || !(q2 * q1 * v2).
isApprox
(
/external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h
269
* \sa MatrixBase::
isApprox
() */
270
bool
isApprox
(const Transform& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const
271
{ return m_matrix.
isApprox
(other.m_matrix, prec); }
/external/eigen/Eigen/src/Geometry/
Quaternion.h
162
* \sa MatrixBase::
isApprox
() */
164
bool
isApprox
(const QuaternionBase<OtherDerived>& other, RealScalar prec = NumTraits<Scalar>::dummy_precision()) const
165
{ return coeffs().
isApprox
(other.coeffs(), prec); }
Transform.h
586
* \sa MatrixBase::
isApprox
() */
587
bool
isApprox
(const Transform& other, typename NumTraits<Scalar>::Real prec = NumTraits<Scalar>::dummy_precision()) const
588
{ return m_matrix.
isApprox
(other.m_matrix, prec); }
[
all
...]
/external/eigen/test/
array.cpp
69
if (!internal::
isApprox
(m1.sum(), (m1+m2).sum(), test_precision<Scalar>()))
Completed in 365 milliseconds
1
2
3