Lines Matching refs:Index
56 typedef typename MatrixType::Index Index;
76 HouseholderQR(Index rows, Index cols)
182 inline Index rows() const { return m_qr.rows(); }
183 inline Index cols() const { return m_qr.cols(); }
227 typedef typename MatrixQR::Index Index;
230 Index rows = mat.rows();
231 Index cols = mat.cols();
232 Index size = (std::min)(rows,cols);
244 for(Index k = 0; k < size; ++k)
246 Index remainingRows = rows - k;
247 Index remainingCols = cols - k - 1;
267 typename MatrixQR::Index maxBlockSize=32,
270 typedef typename MatrixQR::Index Index;
274 Index rows = mat.rows();
275 Index cols = mat.cols();
276 Index size = (std::min)(rows, cols);
286 Index blockSize = (std::min)(maxBlockSize,size);
288 Index k = 0;
291 Index bs = (std::min)(size-k,blockSize); // actual size of the block
292 Index tcols = cols - k - bs; // trailing columns
293 Index brows = rows-k; // rows of the block
325 const Index rows = dec().rows(), cols = dec().cols();
326 const Index rank = (std::min)(rows, cols);
360 Index rows = matrix.rows();
361 Index cols = matrix.cols();
362 Index size = (std::min)(rows,cols);