Home | History | Annotate | Download | only in Eigenvalues

Lines Matching refs:matA

82       * \param[in]  matA  Selfadjoint matrix in matrix pencil.
91 * generalized eigenproblem \f$ Ax = \lambda B x \f$ with \a matA the
106 GeneralizedSelfAdjointEigenSolver(const MatrixType& matA, const MatrixType& matB,
108 : Base(matA.cols())
110 compute(matA, matB, options);
115 * \param[in] matA Selfadjoint 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)
165 eigen_assert(matA.cols()==matA.rows() && matB.rows()==matA.rows() && matB.cols()==matB.rows());
184 MatrixType matC = matA.template selfadjointView<Lower>();
197 MatrixType matC = matA.template selfadjointView<Lower>();
210 MatrixType matC = matA.template selfadjointView<Lower>();