Searched defs:isApprox (Results 1 - 13 of 13) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
H A DSparseFuzzy.h17 bool SparseMatrixBase<Derived>::isApprox(const SparseMatrixBase<OtherDerived>& other, const RealScalar &prec) const function in class:Eigen::SparseMatrixBase
H A DSparseMatrixBase.h371 bool isApprox(const SparseMatrixBase<OtherDerived>& other,
375 bool isApprox(const MatrixBase<OtherDerived>& other, function in class:Eigen::SparseMatrixBase
377 { return toDense().isApprox(other,prec); }
/external/eigen/Eigen/src/Core/
H A DFuzzy.h95 * Indeed, \c isApprox(zero) returns false unless \c *this itself is exactly the zero matrix
103 bool DenseBase<Derived>::isApprox( function in class:Eigen::DenseBase
122 * \sa isApprox(), isMuchSmallerThan(const DenseBase<OtherDerived>&, RealScalar) const
141 * \sa isApprox(), isMuchSmallerThan(const RealScalar&, RealScalar) const
H A DMathFunctions.h1318 static inline bool isApprox(const Scalar& x, const Scalar& y, const RealScalar& prec) function in struct:Eigen::internal::scalar_fuzzy_default_impl
1325 return x <= y || isApprox(x, y, prec);
1339 static inline bool isApprox(const Scalar& x, const Scalar& y, const RealScalar&) function in struct:Eigen::internal::scalar_fuzzy_default_impl
1360 static inline bool isApprox(const Scalar& x, const Scalar& y, const RealScalar& prec) function in struct:Eigen::internal::scalar_fuzzy_default_impl
1377 inline bool isApprox(const Scalar& x, const Scalar& y, function in namespace:Eigen::internal
1380 return scalar_fuzzy_impl<Scalar>::isApprox(x, y, precision);
1413 static inline bool isApprox(bool x, bool y, bool) function in struct:Eigen::internal::scalar_fuzzy_impl
/external/eigen/Eigen/src/Geometry/
H A DScaling.h101 * \sa MatrixBase::isApprox() */
102 bool isApprox(const UniformScaling& other, const typename NumTraits<Scalar>::Real& prec = NumTraits<Scalar>::dummy_precision()) const function in class:Eigen::UniformScaling
103 { return internal::isApprox(m_factor, other.factor(), prec); }
H A DAngleAxis.h150 * \sa MatrixBase::isApprox() */
151 EIGEN_DEVICE_FUNC bool isApprox(const AngleAxis& other, const typename NumTraits<Scalar>::Real& prec = NumTraits<Scalar>::dummy_precision()) const function in class:Eigen::AngleAxis
152 { return m_axis.isApprox(other.m_axis, prec) && internal::isApprox(m_angle,other.m_angle, prec); }
H A DParametrizedLine.h131 * \sa MatrixBase::isApprox() */
132 EIGEN_DEVICE_FUNC bool isApprox(const ParametrizedLine& other, const typename NumTraits<Scalar>::Real& prec = NumTraits<Scalar>::dummy_precision()) const function in class:Eigen::ParametrizedLine
133 { return m_origin.isApprox(other.m_origin, prec) && m_direction.isApprox(other.m_direction, prec); }
H A DRotation2D.h157 * \sa MatrixBase::isApprox() */
158 EIGEN_DEVICE_FUNC bool isApprox(const Rotation2D& other, const typename NumTraits<Scalar>::Real& prec = NumTraits<Scalar>::dummy_precision()) const function in class:Eigen::Rotation2D
159 { return internal::isApprox(m_angle,other.m_angle, prec); }
H A DTranslation.h166 * \sa MatrixBase::isApprox() */
167 EIGEN_DEVICE_FUNC bool isApprox(const Translation& other, const typename NumTraits<Scalar>::Real& prec = NumTraits<Scalar>::dummy_precision()) const function in class:Eigen::Translation
168 { return m_coeffs.isApprox(other.m_coeffs, prec); }
H A DHyperplane.h270 * \sa MatrixBase::isApprox() */
272 EIGEN_DEVICE_FUNC bool isApprox(const Hyperplane<Scalar,AmbientDimAtCompileTime,OtherOptions>& other, const typename NumTraits<Scalar>::Real& prec = NumTraits<Scalar>::dummy_precision()) const function in class:Eigen::Hyperplane
273 { return m_coeffs.isApprox(other.m_coeffs, prec); }
H A DAlignedBox.h301 * \sa MatrixBase::isApprox() */
302 EIGEN_DEVICE_FUNC bool isApprox(const AlignedBox& other, const RealScalar& prec = ScalarTraits::dummy_precision()) const function in class:Eigen::AlignedBox
303 { return m_min.isApprox(other.m_min, prec) && m_max.isApprox(other.m_max, prec); }
H A DQuaternion.h159 * \sa MatrixBase::isApprox() */
161 EIGEN_DEVICE_FUNC bool isApprox(const QuaternionBase<OtherDerived>& other, const RealScalar& prec = NumTraits<Scalar>::dummy_precision()) const function in class:Eigen::QuaternionBase
162 { return coeffs().isApprox(other.coeffs(), prec); }
H A DTransform.h646 * \sa MatrixBase::isApprox() */
647 EIGEN_DEVICE_FUNC bool isApprox(const Transform& other, const typename NumTraits<Scalar>::Real& prec = NumTraits<Scalar>::dummy_precision()) const function in class:Eigen::Transform
648 { return m_matrix.isApprox(other.m_matrix, prec); }

Completed in 2580 milliseconds