Lines Matching full:adjoint
337 transposition \n adjoint \matrixworld</td><td>\code
339 mat1 = mat2.adjoint(); mat1.adjointInPlace();
345 scalar = col1.adjoint() * col2;
346 scalar = (col1.adjoint() * col2).value();\endcode
538 <a href="#" class="top">top</a>\section QuickRef_DiagTriSymm Diagonal, Triangular, and Self-adjoint matrices
605 m3 += s1 * m1.adjoint().triangularView<Eigen::UnitUpper>() * m2
606 m3 -= s1 * m2.conjugate() * m1.adjoint().triangularView<Eigen::Lower>() \endcode
615 L1.triangularView<Eigen::Lower>().adjoint().solveInPlace(M3)
640 m3 -= s1 * m3.adjoint() * m1.selfadjointView<Eigen::Lower>();\endcode
648 M1.selfadjointView<Eigen::Lower>().rankUpdate(M2.adjoint(),-1); \endcode
697 <tr><td>View a triangular part as a symmetric/self-adjoint matrix (read/write)</td>
700 mat1.selfadjointView<Upper>() = mat2 + mat2.adjoint(); // evaluated and write to the upper triangular part only
714 mat1.selfadjointView<Upper or Lower>().rankUpdate(mat2.adjoint(), scalar);