Lines Matching defs:compute
38 * The main function in this class is compute(), which computes the
90 * perform decompositions via compute().
123 * This constructor calls compute() to compute the eigendecomposition.
134 compute(matrix.derived(), computeEigenvectors);
143 * function compute(const MatrixType& matrix, bool) has been called before
144 * to compute the eigendecomposition of a matrix, and
170 * function compute(const MatrixType& matrix, bool) has been called before
171 * to compute the eigendecomposition of a matrix.
203 * compute the eigenvalues and eigenvectors.
213 ComplexEigenSolver& compute(const EigenBase<InputType>& matrix, bool computeEigenvectors = true);
261 ComplexEigenSolver<MatrixType>::compute(const EigenBase<InputType>& matrix, bool computeEigenvectors)
270 m_schur.compute(matrix.derived(), computeEigenvectors);
293 // Compute X such that T = X D X^(-1), where D is the diagonal of T.
299 // Compute X(i,k) using the (i,k) entry of the equation X T = D X
316 // Compute V as V = U X; now A = U T U^* = U X D X^(-1) U^* = V D V^(-1)