Lines Matching refs:cols
57 : m_householder(matrix.rows(), matrix.cols()),
58 m_bidiagonal(matrix.cols(), matrix.cols()),
80 .setLength(m_householder.cols()-1)
101 Index cols = mat.cols();
111 for (Index k = 0; /* breaks at k==cols-1 below */ ; ++k)
114 Index remainingCols = cols - k - 1;
123 if(k == cols-1) break;
144 * and the \a blockSize x \c cols horizontal panel [A00 A01] of the matrix \a A. The bottom-right block A11
172 Index bcols = A.cols();
292 Index cols = A.cols();
293 Index size = (std::min)(rows, cols);
306 MatrixType::MaxColsAtCompileTime> Y(cols,maxBlockSize);
314 Index bcols = cols - k; // columns of the block
336 if(k+bs==cols || bcols<48) // somewhat arbitrary threshold
362 Index cols = matrix.cols();
363 EIGEN_ONLY_USED_FOR_DEBUG(cols);
365 eigen_assert(rows >= cols && "UpperBidiagonalization is only for Arices satisfying rows>=cols.");
384 Index cols = matrix.cols();
386 EIGEN_ONLY_USED_FOR_DEBUG(cols);
388 eigen_assert(rows >= cols && "UpperBidiagonalization is only for Arices satisfying rows>=cols.");