HomeSort by relevance Sort by last modified time
    Searched refs:determinant (Results 26 - 43 of 43) sorted by null

12

  /external/eigen/Eigen/src/Core/
MatrixBase.h 350 typename ResultType::Scalar& determinant,
360 Scalar determinant() const;
TriangularMatrix.h 368 Scalar determinant() const function in class:Eigen::TriangularView
  /external/eigen/Eigen/src/LU/
FullPivLU.h 29 * the rank, invertibility, inverse, kernel, and determinant.
43 * \sa MatrixBase::fullPivLu(), MatrixBase::determinant(), MatrixBase::inverse()
220 /** \returns the determinant of the matrix of which
227 * \note For fixed-size matrices of size up to 4, MatrixBase::determinant() offers
230 * \warning a determinant can be very big or small, so for matrices
233 * \sa MatrixBase::determinant()
235 typename internal::traits<MatrixType>::Scalar determinant() const;
502 typename internal::traits<MatrixType>::Scalar FullPivLU<MatrixType>::determinant() const function in class:Eigen::FullPivLU
505 eigen_assert(m_lu.rows() == m_lu.cols() && "You can't take the determinant of a non-square matrix!");
  /external/skia/legacy/src/utils/
SkMatrix44.cpp 241 double SkMatrix44::determinant() const { function in class:SkMatrix44
269 double det = this->determinant();
  /external/skia/include/utils/
SkMatrix44.h 359 double determinant() const;
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 424 /** \returns the determinant of the underlying matrix from the current factorization */
425 Scalar determinant() const function in class:Eigen::SimplicialLLT
518 /** \returns the determinant of the underlying matrix from the current factorization */
519 Scalar determinant() const function in class:Eigen::SimplicialLDLT
654 Scalar determinant() const function in class:Eigen::SimplicialCholesky
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Matrix3f.java 960 float det = determinant();
985 float det = determinant();
1049 * <code>determinant</code> generates the determinant of this matrix.
1051 * @return the determinant
1053 public float determinant() { method in class:Matrix3f
    [all...]
FastMath.java 757 * Returns the determinant of a 4x4 matrix.
759 public static float determinant(double m00, double m01, double m02, method in class:FastMath
    [all...]
Matrix4f.java 1624 public float determinant() { method in class:Matrix4f
    [all...]
  /external/ceres-solver/internal/ceres/
dogleg_strategy.cc 414 const double detB = subspace_B_.determinant();
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 622 Scalar x = (svd.matrixU() * svd.matrixV().adjoint()).determinant(); // so x has absolute value 1
653 Scalar x = (svd.matrixU() * svd.matrixV().adjoint()).determinant(); // so x has absolute value 1
  /external/eigen/Eigen/src/Eigen2Support/
SVD.h 587 Scalar x = (m_matU * m_matV.adjoint()).determinant(); // so x has absolute value 1
613 Scalar x = (m_matU * m_matV.adjoint()).determinant(); // so x has absolute value 1
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 558 Scalar determinant() const;
775 typename SuperLU<MatrixType>::Scalar SuperLU<MatrixType>::determinant() const function in class:Eigen::SuperLU
777 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for computing the determinant, you must first call either compute() or analyzePattern()/factorize()");
  /external/eigen/test/eigen2/
eigen2_geometry.cpp 348 VERIFY_IS_APPROX(mat_rotation.determinant(), Scalar(1));
352 VERIFY_IS_APPROX(mat_rotation.determinant(), Scalar(1));
eigen2_geometry_with_eigen2_prefix.cpp 350 VERIFY_IS_APPROX(mat_rotation.determinant(), Scalar(1));
354 VERIFY_IS_APPROX(mat_rotation.determinant(), Scalar(1));
  /external/eigen/test/
geo_transformations.cpp 374 VERIFY_IS_APPROX(mat_rotation.determinant(), Scalar(1));
378 VERIFY_IS_APPROX(mat_rotation.determinant(), Scalar(1));
  /external/eigen/Eigen/src/Geometry/
Transform.h     [all...]
  /external/skia/src/utils/
SkMatrix44.cpp 411 double SkMatrix44::determinant() const { function in class:SkMatrix44
449 // Calculate the determinant
529 // Calculate the determinant

Completed in 416 milliseconds

12