Searched refs:matB (Results 1 - 19 of 19) sorted by relevance

/external/eigen/doc/snippets/
H A DTopicAliasing_mult2.cpp1 MatrixXf matA(2,2), matB(2,2);
5 matB = matA * matA;
6 cout << matB << endl << endl;
9 matB.noalias() = matA * matA;
10 cout << matB; variable
H A DTutorial_AdvancedInitialization_Block.cpp3 MatrixXf matB(4, 4);
4 matB << matA, matA/10, matA/10, matA;
5 std::cout << matB << std::endl;
/external/eigen/Eigen/src/Eigenvalues/
H A DGeneralizedSelfAdjointEigenSolver.h84 * \param[in] matB Positive-definite matrix in matrix pencil.
92 * selfadjoint matrix \f$ A \f$ and \a matB the positive definite matrix
106 GeneralizedSelfAdjointEigenSolver(const MatrixType& matA, const MatrixType& matB, argument
110 compute(matA, matB, options);
117 * \param[in] matB Positive-definite matrix in matrix pencil.
129 * with \a matA the selfadjoint matrix \f$ A \f$ and \a matB the positive definite
153 GeneralizedSelfAdjointEigenSolver& compute(const MatrixType& matA, const MatrixType& matB,
163 compute(const MatrixType& matA, const MatrixType& matB, int options) argument
165 eigen_assert(matA.cols()==matA.rows() && matB.rows()==matA.rows() && matB
[all...]
/external/eigen/test/
H A Dcholesky.cpp74 MatrixType matB = MatrixType::Random(rows,cols), matX(rows,cols); local
91 matX = chollo.solve(matB);
92 VERIFY_IS_APPROX(symm * matX, matB);
107 matX = cholup.solve(matB);
108 VERIFY_IS_APPROX(symm * matX, matB);
131 m2 += symmLo.template selfadjointView<Lower>().llt().solve(matB);
132 VERIFY_IS_APPROX(m2, m1 + symmLo.template selfadjointView<Lower>().llt().solve(matB));
134 m2 -= symmLo.template selfadjointView<Lower>().llt().solve(matB);
135 VERIFY_IS_APPROX(m2, m1 - symmLo.template selfadjointView<Lower>().llt().solve(matB));
137 m2.noalias() += symmLo.template selfadjointView<Lower>().llt().solve(matB);
304 MatrixType matB = MatrixType::Random(rows,cols), matX(rows,cols); local
[all...]
H A Dsparse_solvers.cpp80 SparseMatrix<Scalar> matB(rows, rows);
85 initSparse<Scalar>(density, refMatB, matB);
87 m2.template triangularView<Lower>().solveInPlace(matB);
88 VERIFY_IS_APPROX(matB.toDense(), refMatB);
92 initSparse<Scalar>(density, refMatB, matB);
94 m2.template triangularView<Upper>().solveInPlace(matB);
95 VERIFY_IS_APPROX(matB, refMatB);
/external/deqp/framework/common/
H A DtcuMatrix.hpp236 const Matrix<T, 2, 1> matB = Matrix<T, 2, 1>(areaB); local
240 const T schurComplement = T(1.0f) / (matD - matC*invA*matB)(0,0);
243 const Matrix<T, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
244 const Matrix<T, 2, 1> blockB = (zeroMat-invA)*matB*schurComplement;
287 const Matrix<T, 2, 2> matB = Matrix<T, 2, 2>(areaB); local
291 const Matrix<T, 2, 2> schurComplement = inverse(matD - matC*invA*matB);
294 const Matrix<T, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
295 const Matrix<T, 2, 2> blockB = (zeroMat-invA)*matB*schurComplement;
/external/skia/src/effects/
H A DSkColorMatrix.cpp132 void SkColorMatrix::setConcat(const SkColorMatrix& matA, const SkColorMatrix& matB) { argument
133 SetConcat(fMat, matA.fMat, matB.fMat);
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderMatrixTests.cpp762 const tcu::Matrix<float, 2, 1> matB = tcu::Matrix<float, 2, 1>(areaB); local
766 const float schurComplement = 1.0f / (matD - matC*invA*matB)(0,0);
769 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
770 const tcu::Matrix<float, 2, 1> blockB = (zeroMat-invA)*matB*schurComplement;
814 const tcu::Matrix<float, 2, 2> matB = Mat2(areaB); local
818 const tcu::Matrix<float, 2, 2> schurComplement = inverse(matD - matC*invA*matB);
821 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
822 const tcu::Matrix<float, 2, 2> blockB = (zeroMat-invA)*matB*schurComplement;
/external/deqp/modules/gles3/functional/
H A Des3fShaderMatrixTests.cpp767 const tcu::Matrix<float, 2, 1> matB = tcu::Matrix<float, 2, 1>(areaB); local
771 const float schurComplement = 1.0f / (matD - matC*invA*matB)(0,0);
774 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
775 const tcu::Matrix<float, 2, 1> blockB = (zeroMat-invA)*matB*schurComplement;
819 const tcu::Matrix<float, 2, 2> matB = Mat2(areaB); local
823 const tcu::Matrix<float, 2, 2> schurComplement = inverse(matD - matC*invA*matB);
826 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
827 const tcu::Matrix<float, 2, 2> blockB = (zeroMat-invA)*matB*schurComplement;
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp3676 ExprP<Vec2> matB = bindExpression("matB", ctx, vec2(mat[2][0], mat[2][1])); local
3682 (matD - dot(matC * invA, matB)));
3684 ExprP<Vec2> t1 = invA * matB;
3691 (invA * matB) * -schur);
3715 ExprP<Mat2> matB = bindExpression("matB", ctx, local
3725 inverse(matD + -(matC * invA * matB)));
3727 invA + (invA * matB * schur * matC * invA));
3729 (-invA) * matB * schu
[all...]
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp3705 ExprP<Vec2> matB = bindExpression("matB", ctx, vec2(mat[2][0], mat[2][1])); local
3711 (matD - dot(matC * invA, matB)));
3713 ExprP<Vec2> t1 = invA * matB;
3720 (invA * matB) * -schur);
3744 ExprP<Mat2> matB = bindExpression("matB", ctx, local
3754 inverse(matD + -(matC * invA * matB)));
3756 invA + (invA * matB * schur * matC * invA));
3758 (-invA) * matB * schu
[all...]
/external/opencv/cvaux/src/
H A Dcvepilines.cpp2427 CvMat matB = cvMat( 8, 1, CV_64F, b ); local
2431 CV_CALL( cvMatMulAdd( &matInvA, &matB, 0, &matX ));
2567 CvMat matB = cvMat( 8, 1, CV_64F, b );
2571 CV_CALL( cvMatMulAdd( &matInvA, &matB, 0, &matX ));
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 463 milliseconds