Lines Matching full:eigenvectors

24   * \brief Computes the generalized eigenvalues and eigenvectors of a pair of general matrices
30 …* The generalized eigenvalues and eigenvectors of a matrix pair \f$ A \f$ and \f$ B \f$ are scalars
33 * \f$ V \f$ is a matrix with the eigenvectors as its columns, then \f$ A V =
37 * The generalized eigenvalues and eigenvectors of a matrix pair may be complex, even when the
45 * Call the function compute() to compute the generalized eigenvalues and eigenvectors of
48 * eigenvalues and eigenvectors at construction time. Once the eigenvalue and
49 * eigenvectors are computed, they can be retrieved with the eigenvalues() and
50 * eigenvectors() functions.
104 /** \brief Type for matrix of eigenvectors as returned by eigenvectors().
147 * \param[in] computeEigenvectors If true, both the eigenvectors and the
151 * and eigenvectors.
167 /* \brief Returns the computed generalized eigenvectors.
169 * \returns %Matrix whose columns are the (possibly complex) right eigenvectors.
170 * i.e. the eigenvectors that solve (A - l*B)x = 0. The ordering matches the eigenvalues.
179 EigenvectorsType eigenvectors() const { in eigenvectors() function
180 eigen_assert(m_vectorsOkay && "Eigenvectors for GeneralizedEigenSolver were not calculated."); in eigenvectors()
200 * \sa alphas(), betas(), eigenvectors()
234 * \param[in] computeEigenvectors If true, both the eigenvectors and the
241 * \p computeEigenvectors is true, then the eigenvectors are also computed
242 * and can be retrieved by calling eigenvectors().
246 * and eigenvectors.