Home
last modified time | relevance | path

Searched refs:timesTranspose (Results 1 – 25 of 29) sorted by relevance

12

/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-math/src/test/java/de/lmu/ifi/dbs/elki/math/linearalgebra/
H A DCholeskyDecompositionTest.java64 …CholeskyDecomposition CholL1 = new CholeskyDecomposition(timesTranspose(TESTMATRIX_L1, TESTMATRIX_… in testMatrixL1()
71 …CholeskyDecomposition CholL2 = new CholeskyDecomposition(timesTranspose(TESTMATRIX_L2, TESTMATRIX_… in testMatrixL2()
81 assertTrue(new CholeskyDecomposition(timesTranspose(TESTMATRIX_L1, TESTMATRIX_L1)).isSPD()); in testIsSPD()
82 assertTrue(new CholeskyDecomposition(timesTranspose(TESTMATRIX_L2, TESTMATRIX_L2)).isSPD()); in testIsSPD()
100 assertTrue(almostEquals(p, timesTranspose(l, l), 1e-15)); in testJamaSolve()
114 final double[][] A1 = timesTranspose(TESTMATRIX_L1, TESTMATRIX_L1); in testSolve()
115 final double[][] A2 = timesTranspose(TESTMATRIX_L2, TESTMATRIX_L2); in testSolve()
H A DVMathMatrixTest.java224 assertTrue(almostEquals(timesTranspose(m3, m4), m3_times_m4transposed)); in testMatrixMatrixMultiplication()
229 assertTrue(almostEquals(timesTranspose(m3, m4), times(m3, m4_t))); in testMatrixMatrixMultiplication()
231 assertTrue(almostEquals(timesTranspose(m3, m4), transposeTimesTranspose(m3_t, m4))); in testMatrixMatrixMultiplication()
314 assertTrue(almostEquals(times(v3, m2), timesTranspose(v3, v4))); in testVectorVectorMultiplication()
317 assertTrue(almostEquals(timesTranspose(v3, m2_t), res)); in testVectorVectorMultiplication()
319 assertTrue(almostEquals(timesTranspose(v3, m2_t), timesTranspose(v3, v4))); in testVectorVectorMultiplication()
372 assertNotSame(m1, timesTranspose(m1, m1)); in testReference()
392 assertNotSame(m1, timesTranspose(v1, m1)); in testReference()
427 … assertDimensionMismatch(ERR_MATRIX_INNERDIM, () -> timesTranspose(unitMatrix(3), identity(3, 2))); in testDimensionMismatch()
446 …assertDimensionMismatch(ERR_MATRIX_INNERDIM, () -> timesTranspose(unitVector(3, 0), identity(3, 2)… in testDimensionMismatch()
H A DEigenvalueDecompositionTest.java28 import static de.lmu.ifi.dbs.elki.math.linearalgebra.VMath.timesTranspose;
48 testBasics(timesTranspose(times(evs, lam), evs)); in testToyExample()
49 testBasics(timesTranspose(times(evs, lam2), evs)); in testToyExample()
H A DSingularValueDecompositionTest.java42 double[][] M2 = times(svd.getU(), timesTranspose(svd.getS(), svd.getV())); in testJamaExample()
H A DVMathOperationsTest.java604 final double[][] A1 = timesTranspose(TESTMATRIX_L1, TESTMATRIX_L1); in testSolve()
605 final double[][] A2 = timesTranspose(TESTMATRIX_L2, TESTMATRIX_L2); in testSolve()
H A DVMathVectorTest.java283 assertTrue(VMath.equals(timesTranspose(v1, v2), res)); in testTimesTranspose()
290 assertTrue(VMath.equals(timesTranspose(TESTVEC, TESTVEC), times(m1, m2))); in testTimesTranspose()
/dports/devel/bullet/bullet3-3.21/test/Bullet2/Source/Tests/
H A DTest_3x3timesTranspose.cpp28 static btMatrix3x3 timesTranspose(const btMatrix3x3 &in, const btMatrix3x3 &m) in timesTranspose() function
63 out[i] = timesTranspose(in1[i], in2[i]); in Test_3x3timesTranspose()
64 out2[i] = in1[i].timesTranspose(in2[i]); in Test_3x3timesTranspose()
81 out[i] = timesTranspose(in1[i], in2[i]); in Test_3x3timesTranspose()
98 out[i] = in1[i].timesTranspose(in2[i]); in Test_3x3timesTranspose()
/dports/devel/py-bullet3/bullet3-3.21/test/Bullet2/Source/Tests/
H A DTest_3x3timesTranspose.cpp28 static btMatrix3x3 timesTranspose(const btMatrix3x3 &in, const btMatrix3x3 &m) in timesTranspose() function
63 out[i] = timesTranspose(in1[i], in2[i]); in Test_3x3timesTranspose()
64 out2[i] = in1[i].timesTranspose(in2[i]); in Test_3x3timesTranspose()
81 out[i] = timesTranspose(in1[i], in2[i]); in Test_3x3timesTranspose()
98 out[i] = in1[i].timesTranspose(in2[i]); in Test_3x3timesTranspose()
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-math/src/main/java/de/lmu/ifi/dbs/elki/math/statistics/
H A DMultipleLinearRegression.java26 import static de.lmu.ifi.dbs.elki.math.linearalgebra.VMath.timesTranspose;
115 b = times(timesTranspose(xx_inverse, x), y); in MultipleLinearRegression()
/dports/math/fcl05/fcl-0.5.0/include/fcl/math/
H A Dmatrix_3f.h260 Matrix3fX<T> timesTranspose(const Matrix3fX<T>& other) const in timesTranspose() function
262 return Matrix3fX<T>(data.timesTranspose(other.data)); in timesTranspose()
274 return res.timesTranspose(*this); in tensorTransform()
H A Dmath_details.h395 Matrix3Data<T> timesTranspose(const Matrix3Data<T>& m) const in timesTranspose() function
/dports/games/critterding/critterding-beta12/src/utils/bullet/LinearMath/
H A DbtMatrix3x3.h386 btMatrix3x3 timesTranspose(const btMatrix3x3& m) const;
586 btMatrix3x3::timesTranspose(const btMatrix3x3& m) const in timesTranspose() function
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-math/src/main/java/de/lmu/ifi/dbs/elki/math/linearalgebra/
H A DVMath.java590 public static double[][] timesTranspose(final double[] v1, final double[][] m2) { in timesTranspose() method in VMath
609 public static double[][] timesTranspose(final double[] v1, final double[] v2) { in timesTranspose() method in VMath
1428 public static double[][] timesTranspose(final double[][] m1, final double[][] m2) {
/dports/games/supertuxkart/SuperTuxKart-1.2-src/lib/bullet/src/LinearMath/
H A DbtMatrix3x3.h396 btMatrix3x3 timesTranspose(const btMatrix3x3& m) const;
669 btMatrix3x3::timesTranspose(const btMatrix3x3& m) const in timesTranspose() function
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/bullet/src/LinearMath/
H A DbtMatrix3x3.h396 btMatrix3x3 timesTranspose(const btMatrix3x3& m) const;
669 btMatrix3x3::timesTranspose(const btMatrix3x3& m) const in timesTranspose() function
/dports/math/fcl05/fcl-0.5.0/include/fcl/simd/
H A Dmath_simd_details.h689 inline sse_meta_f12 timesTranspose(const sse_meta_f12& m) const in timesTranspose() function
1100 inline sse_meta_f16 timesTranspose(const sse_meta_f16& m) const in timesTranspose() function
/dports/math/fcl/fcl-0.7.0/.deprecated/simd/
H A Dmath_simd_details.h689 inline sse_meta_f12 timesTranspose(const sse_meta_f12& m) const in timesTranspose() function
1100 inline sse_meta_f16 timesTranspose(const sse_meta_f16& m) const in timesTranspose() function
/dports/science/chrono/chrono-7.0.1/src/chrono/collision/bullet/LinearMath/
H A DbtMatrix3x3.h644 btMatrix3x3 timesTranspose(const btMatrix3x3& m) const; in ATTRIBUTE_ALIGNED16()
1139 btMatrix3x3::timesTranspose(const btMatrix3x3& m) const in timesTranspose() function
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/Bullet/src/LinearMath/
H A DbtMatrix3x3.h635 btMatrix3x3 timesTranspose(const btMatrix3x3& m) const; in ATTRIBUTE_ALIGNED16()
1115 btMatrix3x3::timesTranspose(const btMatrix3x3& m) const in timesTranspose() function
/dports/devel/py-bullet3/bullet3-3.21/src/Bullet3Common/
H A Db3Matrix3x3.h618 b3Matrix3x3 timesTranspose(const b3Matrix3x3& m) const; in B3_ATTRIBUTE_ALIGNED16()
1087 b3Matrix3x3::timesTranspose(const b3Matrix3x3& m) const in timesTranspose() function
/dports/games/OpenTomb/OpenTomb-win32-2018-02-03_alpha/extern/bullet/LinearMath/
H A DbtMatrix3x3.h635 btMatrix3x3 timesTranspose(const btMatrix3x3& m) const; in ATTRIBUTE_ALIGNED16()
1114 btMatrix3x3::timesTranspose(const btMatrix3x3& m) const in timesTranspose() function
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/bullet/LinearMath/
H A DbtMatrix3x3.h651 btMatrix3x3 timesTranspose(const btMatrix3x3& m) const; in ATTRIBUTE_ALIGNED16()
1146 btMatrix3x3::timesTranspose(const btMatrix3x3& m) const in timesTranspose() function
/dports/devel/godot/godot-3.2.3-stable/thirdparty/bullet/Bullet3Common/
H A Db3Matrix3x3.h618 b3Matrix3x3 timesTranspose(const b3Matrix3x3& m) const; in B3_ATTRIBUTE_ALIGNED16()
1087 b3Matrix3x3::timesTranspose(const b3Matrix3x3& m) const in timesTranspose() function
/dports/devel/godot/godot-3.2.3-stable/thirdparty/bullet/LinearMath/
H A DbtMatrix3x3.h651 btMatrix3x3 timesTranspose(const btMatrix3x3& m) const; in ATTRIBUTE_ALIGNED16()
1146 btMatrix3x3::timesTranspose(const btMatrix3x3& m) const in timesTranspose() function
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/bullet/Bullet3Common/
H A Db3Matrix3x3.h618 b3Matrix3x3 timesTranspose(const b3Matrix3x3& m) const; in B3_ATTRIBUTE_ALIGNED16()
1087 b3Matrix3x3::timesTranspose(const b3Matrix3x3& m) const in timesTranspose() function

12