HomeSort by relevance Sort by last modified time
    Searched full:determinant (Results 51 - 75 of 188) sorted by null

1 23 4 5 6 7 8

  /prebuilts/go/linux-x86/test/
torture.go 32 // Compute the determinant of a 4x4-matrix by the sum
34 func determinant(m [4][4]float64) float64 {
61 // Compute the determinant of a 4x4-matrix by the sum
90 // Compute the determinant of a 4x4-matrix by the sum
  /external/skia/tests/
Matrix44Test.cpp 314 REPORTER_ASSERT(reporter, nearly_equal_double(1, a.determinant()));
316 REPORTER_ASSERT(reporter, nearly_equal_double(2, a.determinant()));
319 REPORTER_ASSERT(reporter, nearly_equal_double(0.5, b.determinant()));
324 nearly_equal_double(a.determinant(),
325 b.determinant()));
328 REPORTER_ASSERT(reporter, nearly_equal_double(16, d.determinant()));
332 REPORTER_ASSERT(reporter, nearly_equal_double(32, e.determinant()));
334 REPORTER_ASSERT(reporter, nearly_equal_double(0, e.determinant()));
    [all...]
  /external/vulkan-validation-layers/libs/glm/gtx/
simd_mat4.hpp 188 //! Return the determinant of a mat4 matrix.
190 float determinant(
  /external/opencv3/3rdparty/openexr/Imath/
ImathMatrixAlgo.cpp 757 // determinant. We can do this by adding the appropriate number of
764 // if U has a negative determinant, and
766 // if V has a neg. determinant.
767 if (U.determinant() < 0)
774 if (V.determinant() < 0)
868 // determinant. We can do this by adding the appropriate number of
876 // if U has a negative determinant, and
878 // if V has a neg. determinant.
879 if (U.determinant() < 0)
886 if (V.determinant() < 0
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
EigenDecompositionImpl.java 227 * Return the determinant of the matrix
228 * @return determinant of the matrix
231 double determinant = 1; local
233 determinant *= lambda;
235 return determinant;
BigMatrix.java 273 * Returns the determinant of this matrix.
275 * @return determinant
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/src/gl-matrix/
mat3.js 175 // Calculate the determinant
220 * Calculates the determinant of a mat3
223 * @returns {Number} determinant of a
225 mat3.determinant = function (a) {
519 // Calculate the determinant
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 368 /** \returns the determinant of the underlying matrix from the current factorization */
369 Scalar determinant() const function in class:Eigen::SimplicialLLT
463 /** \returns the determinant of the underlying matrix from the current factorization */
464 Scalar determinant() const function in class:Eigen::SimplicialLDLT
599 Scalar determinant() const function in class:Eigen::SimplicialCholesky
  /external/eigen/Eigen/src/LU/arch/
Inverse_SSE.h 77 __m128 dA, dB, dC, dD; // determinant of the sub-matrices
79 __m128 rd; // reciprocal of the determinant
215 __m128d dA, dB, dC, dD; // determinant of the sub-matrices
  /development/perftests/panorama/feature_mos/src/mosaic/
trsMatrix.cpp 65 // returns: determinant
  /external/chromium-trace/catapult/telemetry/docs/pydoc/
telemetry.internal.image_processing.cv_util.html 37 the&nbsp;determinant&nbsp;and&nbsp;checks&nbsp;whether&nbsp;it's&nbsp;within&nbsp;the&nbsp;tolerance.&nbsp;Tolerance&nbsp;is<br>
  /external/eigen/test/
CMakeLists.txt 178 ei_add_test(determinant)
qr_colpivoting.cpp 95 // now construct a matrix with prescribed determinant
qr_fullpivoting.cpp 79 // now construct a matrix with prescribed determinant
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
Affine2Test.java 105 // check determinant and inverse
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_twoside.c 131 * We'll multiply the primitive's determinant by this sign to determine
  /external/opencv3/modules/core/include/opencv2/core/
operations.hpp 85 _Tp d = determinant(a);
101 _Tp d = (_Tp)determinant(a);
140 _Tp d = determinant(a);
155 _Tp d = (_Tp)determinant(a);
  /external/opencv3/modules/video/test/
test_estimaterigid.cpp 122 dB = cv::determinant(B);
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
trsMatrix.cpp 65 // returns: determinant
  /external/aac/libSBRdec/src/
lpp_tran.cpp 196 /* Resulting autocorrelation determinant exponent */
329 int acDetScale = 0; /* scaling of autocorrelation determinant */
390 /* Examine dynamic of determinant in autocorrelation. */
393 acDetScale += ac.det_scale; /* ac scaling of determinant */
395 /* In case of determinant < 10^-38, resetLPCCoeffs=1 has to be enforced. */
    [all...]
  /external/ImageMagick/MagickCore/
distort.c 100 double determinant;
102 determinant=PerceptibleReciprocal(coeff[0]*coeff[4]-coeff[1]*coeff[3]);
103 inverse[0]=determinant*coeff[4];
104 inverse[1]=determinant*(-coeff[1]);
105 inverse[2]=determinant*(coeff[1]*coeff[5]-coeff[2]*coeff[4]);
106 inverse[3]=determinant*(-coeff[3]);
107 inverse[4]=determinant*coeff[0];
108 inverse[5]=determinant*(coeff[2]*coeff[3]-coeff[0]*coeff[5]);
115 double determinant;
117 determinant=PerceptibleReciprocal(coeff[0]*coeff[4]-coeff[3]*coeff[1])
98 double determinant; local
113 double determinant; local
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
gim_linear_math.h 1177 /** determinant of matrix
1179 * Computes determinant of matrix m, returning d
1187 /** determinant of matrix
1189 * Computes determinant of matrix m, returning d
1225 /** determinant of matrix
1227 * Computes determinant of matrix m, returning d
    [all...]
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 282 Scalar determinant() const;
412 typename UmfPackLU<MatrixType>::Scalar UmfPackLU<MatrixType>::determinant() const function in class:Eigen::UmfPackLU
  /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));

Completed in 1379 milliseconds

1 23 4 5 6 7 8