Searched defs:matA (Results 1 - 16 of 16) sorted by relevance

/external/eigen/doc/snippets/
H A DTopicAliasing_mult1.cpp1 MatrixXf matA(2,2);
2 matA << 2, 0, 0, 2;
3 matA = matA * matA;
4 cout << matA; variable
H A DTopicAliasing_mult3.cpp1 MatrixXf matA(2,2);
2 matA << 2, 0, 0, 2;
3 matA.noalias() = matA * matA;
4 cout << matA; variable
H A DTutorial_AdvancedInitialization_Block.cpp1 MatrixXf matA(2, 2);
2 matA << 1, 2, 3, 4;
4 matB << matA, matA/10, matA/10, matA; variable
/external/eigen/Eigen/src/Eigenvalues/
H A DGeneralizedSelfAdjointEigenSolver.h83 * \param[in] matA Selfadjoint matrix in matrix pencil.
92 * generalized eigenproblem \f$ Ax = \lambda B x \f$ with \a matA the
107 GeneralizedSelfAdjointEigenSolver(const MatrixType& matA, const MatrixType& matB, argument
109 : Base(matA.cols())
111 compute(matA, matB, options);
116 * \param[in] matA Selfadjoint 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) argument
166 eigen_assert(matA
[all...]
H A DHessenbergDecomposition.h270 static void _compute(MatrixType& matA, CoeffVectorType& hCoeffs, VectorType& temp);
280 * Performs a tridiagonal decomposition of \a matA in place.
282 * \param matA the input selfadjoint matrix
285 * The result is written in the lower triangular part of \a matA.
292 void HessenbergDecomposition<MatrixType>::_compute(MatrixType& matA, CoeffVectorType& hCoeffs, VectorType& temp) argument
294 eigen_assert(matA.rows()==matA.cols());
295 Index n = matA.rows();
303 matA.col(i).tail(remainingSize).makeHouseholderInPlace(h, beta);
304 matA
[all...]
H A DTridiagonalization.h26 void tridiagonalization_inplace(MatrixType& matA, CoeffVectorType& hCoeffs);
323 * Performs a tridiagonal decomposition of the selfadjoint matrix \a matA in-place.
325 * \param[in,out] matA On input the selfadjoint matrix. Only the \b lower triangular part is referenced.
331 * and lower sub-diagonal of the matrix \a matA.
339 * \f$ v_i = [ 0, \ldots, 0, 1, matA(i+2,i), \ldots, matA(N-1,i) ]^T \f$.
346 void tridiagonalization_inplace(MatrixType& matA, CoeffVectorType& hCoeffs) argument
352 Index n = matA.rows();
353 eigen_assert(n==matA.cols());
361 matA
[all...]
H A DSelfAdjointEigenSolver.h333 SelfAdjointEigenSolver(const MatrixType& matA, const MatrixType& matB, bool computeEigenvectors = true) argument
334 : m_eivec(matA.cols(), matA.cols()),
335 m_eivalues(matA.cols()),
336 m_subdiag(matA.cols() > 1 ? matA.cols() - 1 : 1),
339 static_cast<GeneralizedSelfAdjointEigenSolver<MatrixType>*>(this)->compute(matA, matB, computeEigenvectors ? ComputeEigenvectors : EigenvaluesOnly);
347 void compute(const MatrixType& matA, const MatrixType& matB, bool computeEigenvectors = true) argument
349 compute(matA, matB, computeEigenvectors ? ComputeEigenvectors : EigenvaluesOnly);
369 * \param matA th
[all...]
/external/chromium_org/third_party/skia/src/effects/
H A DSkColorMatrix.cpp72 void SkColorMatrix::setConcat(const SkColorMatrix& matA, argument
77 if (&matA == this || &matB == this) {
81 const SkScalar* a = matA.fMat;
/external/eigen/test/
H A Dcholesky.cpp308 MatrixType matA; local
309 matA << 1, 1, 1, 1;
312 VectorType vecX = matA.ldlt().solve(vecB);
313 VERIFY_IS_APPROX(matA * vecX, vecB);
/external/neven/Embedded/common/src/b_TensorEm/
H A DInt32Mat.c210 const int32* matA,
218 bbs_memcpy32( tmpMatA, matA, ( matWidthA * matWidthA ) * bbs_SIZEOF32( int32 ) );
232 int32* matA,
246 int32* matL = matA;
209 bts_Int32Mat_solve( struct bbs_Context* cpA, const int32* matA, int32 matWidthA, const int32* inVecA, int32* outVecA, int32 bbpA, int32* tmpMatA, int32* tmpVecA ) argument
231 bts_Int32Mat_solve2( struct bbs_Context* cpA, int32* matA, int32 matWidthA, const int32* inVecA, int32* outVecA, int32 bbpA, int32* tmpVecA ) argument
/external/opencv/cv/src/
H A Dcvcornersubpix.cpp233 CvMat matA, matInvA; local
239 cvInitMatHeader( &matA, 2, 2, CV_64F, A );
242 cvInvert( &matA, &matInvA, CV_SVD );
/external/skia/src/effects/
H A DSkColorMatrix.cpp72 void SkColorMatrix::setConcat(const SkColorMatrix& matA, argument
77 if (&matA == this || &matB == this) {
81 const SkScalar* a = matA.fMat;
/external/opencv/cvaux/src/
H A Dcvepilines.cpp2425 CvMat matA = cvMat( 8, 8, CV_64F, A ); local
2430 CV_CALL( cvPseudoInverse( &matA, &matInvA ));
2565 CvMat matA = cvMat( 8, 8, CV_64F, A );
2570 CV_CALL( cvPseudoInverse( &matA, &matInvA ));
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 414 milliseconds