Home | History | Annotate | Download | only in SVD

Lines Matching refs:bcols

170   Index bcols = A.cols();
177 Index remainingCols = bcols - k - 1;
190 if(k+1<bcols)
256 if(bs<bcols)
260 if(bcols>bs && brows>bs)
262 SubMatType A11( A.bottomRightCorner(brows-bs,bcols-bs) );
264 SubMatType A01( A.block(0,bs, bs,bcols-bs) );
267 A11.noalias() -= A10 * Y.topLeftCorner(bcols,bs).bottomRows(bcols-bs).adjoint();
312 Index bcols = cols - k; // columns of the block
328 BlockType B = A.block(k,k,brows,bcols);
334 if(k+bs==cols || bcols<48) // somewhat arbitrary threshold
350 Y.topLeftCorner(bcols,bs)