HomeSort by relevance Sort by last modified time
    Searched refs:matB (Results 1 - 25 of 32) sorted by null

1 2

  /external/eigen/doc/snippets/
TopicAliasing_mult2.cpp 1 MatrixXf matA(2,2), matB(2,2);
5 matB = matA * matA;
6 cout << matB << endl << endl;
9 matB.noalias() = matA * matA;
10 cout << matB;
Tutorial_AdvancedInitialization_Block.cpp 3 MatrixXf matB(4, 4);
4 matB << matA, matA/10, matA/10, matA;
5 std::cout << matB << std::endl;
  /external/eigen/Eigen/src/Eigenvalues/
GeneralizedSelfAdjointEigenSolver.h 85 * \param[in] matB Positive-definite matrix in matrix pencil.
93 * selfadjoint matrix \f$ A \f$ and \a matB the positive definite matrix
107 GeneralizedSelfAdjointEigenSolver(const MatrixType& matA, const MatrixType& matB,
111 compute(matA, matB, options);
118 * \param[in] matB Positive-definite matrix in matrix pencil.
130 * with \a matA the selfadjoint matrix \f$ A \f$ and \a matB the positive definite
154 GeneralizedSelfAdjointEigenSolver& compute(const MatrixType& matA, const MatrixType& matB,
164 compute(const MatrixType& matA, const MatrixType& matB, int options)
166 eigen_assert(matA.cols()==matA.rows() && matB.rows()==matA.rows() && matB.cols()==matB.rows())
    [all...]
SelfAdjointEigenSolver.h 333 SelfAdjointEigenSolver(const MatrixType& matA, const MatrixType& matB, bool computeEigenvectors = true)
339 static_cast<GeneralizedSelfAdjointEigenSolver<MatrixType>*>(this)->compute(matA, matB, computeEigenvectors ? ComputeEigenvectors : EigenvaluesOnly);
347 void compute(const MatrixType& matA, const MatrixType& matB, bool computeEigenvectors = true)
349 compute(matA, matB, computeEigenvectors ? ComputeEigenvectors : EigenvaluesOnly);
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/spec/gl-matrix/
mat2-spec.js 24 var out, matA, matB, identity, result;
30 matB = [5, 6,
123 beforeEach(function() { result = mat2.multiply(out, matA, matB); });
128 it("should not modify matB", function() { expect(matB).toBeEqualish([5, 6, 7, 8]); });
132 beforeEach(function() { result = mat2.multiply(matA, matA, matB); });
136 it("should not modify matB", function() { expect(matB).toBeEqualish([5, 6, 7, 8]); });
139 describe("when matB is the output matrix", function() {
140 beforeEach(function() { result = mat2.multiply(matB, matA, matB); })
    [all...]
mat2d-spec.js 24 var out, matA, matB, identity, result;
35 matB = [7, 8,
101 beforeEach(function() { result = mat2d.multiply(out, matA, matB); });
106 it("should not modify matB", function() { expect(matB).toBeEqualish(oldB); });
110 beforeEach(function() { result = mat2d.multiply(matA, matA, matB); });
114 it("should not modify matB", function() { expect(matB).toBeEqualish(oldB); });
117 describe("when matB is the output matrix", function() {
118 beforeEach(function() { result = mat2d.multiply(matB, matA, matB); })
    [all...]
mat3-spec.js 24 var out, matA, matB, identity, result;
31 matB = [1, 0, 0,
197 beforeEach(function() { result = mat3.multiply(out, matA, matB); });
214 it("should not modify matB", function() {
215 expect(matB).toBeEqualish([
224 beforeEach(function() { result = mat3.multiply(matA, matA, matB); });
234 it("should not modify matB", function() {
235 expect(matB).toBeEqualish([
243 describe("when matB is the output matrix", function() {
244 beforeEach(function() { result = mat3.multiply(matB, matA, matB); })
    [all...]
mat4-spec.js 24 var out, matA, matB, identity, result;
33 matB = [1, 0, 0, 0,
195 beforeEach(function() { result = mat4.multiply(out, matA, matB); });
214 it("should not modify matB", function() {
215 expect(matB).toBeEqualish([
225 beforeEach(function() { result = mat4.multiply(matA, matA, matB); });
236 it("should not modify matB", function() {
237 expect(matB).toBeEqualish([
246 describe("when matB is the output matrix", function() {
247 beforeEach(function() { result = mat4.multiply(matB, matA, matB); })
    [all...]
  /external/eigen/test/
cholesky.cpp 77 MatrixType matB = MatrixType::Random(rows,cols), matX(rows,cols);
98 matX = chollo.solve(matB);
99 VERIFY_IS_APPROX(symm * matX, matB);
106 matX = cholup.solve(matB);
107 VERIFY_IS_APPROX(symm * matX, matB);
121 m2 += symmLo.template selfadjointView<Lower>().llt().solve(matB);
122 VERIFY_IS_APPROX(m2, m1 + symmLo.template selfadjointView<Lower>().llt().solve(matB));
124 m2 -= symmLo.template selfadjointView<Lower>().llt().solve(matB);
125 VERIFY_IS_APPROX(m2, m1 - symmLo.template selfadjointView<Lower>().llt().solve(matB));
127 m2.noalias() += symmLo.template selfadjointView<Lower>().llt().solve(matB);
    [all...]
sparse_solvers.cpp 80 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/eigen/test/eigen2/
eigen2_cholesky.cpp 34 MatrixType matB = MatrixType::Random(rows,cols), matX(rows,cols);
75 ldlt.solve(matB, &matX);
76 VERIFY_IS_APPROX(symm * matX, matB);
85 chol.solve(matB, &matX);
86 VERIFY_IS_APPROX(symm * matX, matB);
  /frameworks/base/graphics/java/android/graphics/
ColorMatrix.java 178 * as applying matB and then applying matA.
180 * It is legal for either matA or matB to be the same colormatrix as this.
183 public void setConcat(ColorMatrix matA, ColorMatrix matB) {
185 if (matA == this || matB == this) {
192 final float[] b = matB.mArray;
  /external/chromium_org/third_party/skia/src/effects/
SkColorMatrix.cpp 73 const SkColorMatrix& matB) {
77 if (&matA == this || &matB == this) {
82 const SkScalar* b = matB.fMat;
  /external/skia/src/effects/
SkColorMatrix.cpp 73 const SkColorMatrix& matB) {
77 if (&matA == this || &matB == this) {
82 const SkScalar* b = matB.fMat;
  /external/deqp/framework/common/
tcuMatrix.hpp 252 const Matrix<T, 2, 1> matB = Matrix<T, 2, 1>(areaB);
256 const T schurComplement = T(1.0f) / (matD - matC*invA*matB)(0,0);
259 const Matrix<T, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
260 const Matrix<T, 2, 1> blockB = (zeroMat-invA)*matB*schurComplement;
303 const Matrix<T, 2, 2> matB = Matrix<T, 2, 2>(areaB);
307 const Matrix<T, 2, 2> schurComplement = inverse(matD - matC*invA*matB);
310 const Matrix<T, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
311 const Matrix<T, 2, 2> blockB = (zeroMat-invA)*matB*schurComplement;
  /external/deqp/modules/gles3/functional/
es3fShaderMatrixTests.cpp 767 const tcu::Matrix<float, 2, 1> matB = tcu::Matrix<float, 2, 1>(areaB);
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);
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;
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp     [all...]
  /external/opencv/cvaux/src/
cvepilines.cpp     [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 

Completed in 1020 milliseconds

1 2