Home | History | Annotate | Download | only in Eigenvalues

Lines Matching refs:matA

83       * \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,
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)
166 eigen_assert(matA.cols()==matA.rows() && matB.rows()==matA.rows() && matB.cols()==matB.rows());
185 MatrixType matC = matA.template selfadjointView<Lower>();
198 MatrixType matC = matA.template selfadjointView<Lower>();
211 MatrixType matC = matA.template selfadjointView<Lower>();