Lines Matching refs:Index
16 template<typename MatrixType> bool find_pivot(typename MatrixType::Scalar tol, MatrixType &diffs, Index col=0)
25 Index n = diffs.cols();
26 std::vector<std::pair<Index,Index> > transpositions;
27 for(Index i=col; i<n; ++i)
29 Index best_index(0);
41 transpositions.push_back(std::pair<Index,Index>(n-(i-col)-1,best_index));
44 for(Index k=transpositions.size()-1; k>=0; --k)
64 Index n = vec1.rows();
74 typedef typename MatrixType::Index Index;
78 Index rows = m.rows();
79 Index cols = m.cols();