Home | History | Annotate | Download | only in Eigenvalues

Lines Matching refs:Index

82     typedef typename MatrixType::Index Index;
107 * SelfAdjointEigenSolver(Index) for dynamic-size matrices.
131 SelfAdjointEigenSolver(Index size)
379 template<int StorageOrder,typename RealScalar, typename Scalar, typename Index>
380 static void tridiagonal_qr_step(RealScalar* diag, RealScalar* subdiag, Index start, Index end, Scalar* matrixQ, Index n);
392 Index n = matrix.cols();
417 Index end = n-1;
418 Index start = 0;
419 Index iter = 0; // total number of iterations
423 for (Index i = start; i<end; ++i)
456 for (Index i = 0; i < n-1; ++i)
458 Index k;
736 template<int StorageOrder,typename RealScalar, typename Scalar, typename Index>
737 static void tridiagonal_qr_step(RealScalar* diag, RealScalar* subdiag, Index start, Index end, Scalar* matrixQ, Index n)
750 for (Index k = start; k < end; ++k)