Home | History | Annotate | Download | only in Eigenvalues

Lines Matching refs:Index

66     typedef typename MatrixType::Index Index;
94 ComplexSchur(Index size = RowsAtCompileTime==Dynamic ? 1 : RowsAtCompileTime)
187 * \sa compute(const MatrixType&, bool, Index)
226 ComplexSchur& setMaxIterations(Index maxIters)
233 Index getMaxIterations()
251 Index m_maxIters;
254 bool subdiagonalEntryIsNeglegible(Index i);
255 ComplexScalar computeShift(Index iu, Index iter);
264 inline bool ComplexSchur<MatrixType>::subdiagonalEntryIsNeglegible(Index i)
279 typename ComplexSchur<MatrixType>::ComplexScalar ComplexSchur<MatrixType>::computeShift(Index iu, Index iter)
386 Index maxIters = m_maxIters;
394 Index iu = m_matT.cols() - 1;
395 Index il;
396 Index iter = 0; // number of iterations we are working on the (iu,iu) element
397 Index totalIter = 0; // number of iterations for whole matrix
435 for(Index i=il+1 ; i<iu ; i++)