Home
last modified time | relevance | path

Searched refs:selfadjoint (Results 1 – 12 of 12) sorted by relevance

/external/eigen/test/
Dselfadjoint.cpp15 template<typename MatrixType> void selfadjoint(const MatrixType& m) in selfadjoint() function
51 CALL_SUBTEST_1( selfadjoint(Matrix<float, 1, 1>()) ); in test_selfadjoint()
52 CALL_SUBTEST_2( selfadjoint(Matrix<float, 2, 2>()) ); in test_selfadjoint()
53 CALL_SUBTEST_3( selfadjoint(Matrix3cf()) ); in test_selfadjoint()
54 CALL_SUBTEST_4( selfadjoint(MatrixXcd(s,s)) ); in test_selfadjoint()
55 CALL_SUBTEST_5( selfadjoint(Matrix<float,Dynamic,Dynamic,RowMajor>(s, s)) ); in test_selfadjoint()
DCMakeLists.txt165 ei_add_test(selfadjoint)
/external/eigen/doc/
DTopicLinearAlgebraDecompositions.dox238 …<dd>For a real matrix, selfadjoint is a synonym for symmetric. For a complex matrix, selfadjoint i…
239 …More generally, a matrix \f$ A \f$ is selfadjoint if and only if it is equal to its adjoint \f$ A^…
241 …<dd>A selfadjoint matrix \f$ A \f$ is positive definite if \f$ v^* A v > 0 \f$ for any non zero ve…
244 …<dd>A selfadjoint matrix \f$ A \f$ is positive semi-definite if \f$ v^* A v \ge 0 \f$ for any non …
DHiPerformance.dox124 Of course all these remarks hold for all other kind of products involving triangular or selfadjoint
DQuickReference.dox16 …trix and Array classes, basic linear algebra (including triangular and selfadjoint products), arra…
620 \subsection QuickRef_SelfadjointMatrix Symmetric/selfadjoint views
622 …angular matrix, you can reference any triangular part of a square matrix to see it as a selfadjoint
DSparseQuickReference.dox214 <td> Triangular and selfadjoint views</td>
DTutorialSparse.dox310 \subsection TutorialSparse_TriangularSelfadjoint Triangular and selfadjoint views
327 sm2 = sm1.selfadjointView<Upper>(); // makes a full selfadjoint matri…
DA05_PortingFrom2To3.dox107 …th the part, extract, and marked functions to deal with triangular and selfadjoint matrices. In Ei…
/external/eigen/test/eigen2/
Deigen2_triangular.cpp102 void selfadjoint() in selfadjoint() function
138 CALL_SUBTEST_8( selfadjoint() ); in test_eigen2_triangular()
/external/eigen/Eigen/
DCholesky12 …* This module provides two variants of the Cholesky decomposition for selfadjoint (hermitian) matr…
DSparseCholesky21 … provides two variants of the direct sparse Cholesky decomposition for selfadjoint (hermitian) mat…
DIterativeLinearSolvers14 * - ConjugateGradient for selfadjoint (hermitian) matrices,