Lines Matching full:rows
40 \li \c RowsAtCompileTime and \c ColsAtCompileTime are the number of rows and columns of the matrix as known at compile-time or \c Dynamic.
43 All combinations are allowed: you can have a matrix with a fixed number of rows and a dynamic number of columns, etc. The following are all valid:
46 Matrix<double, Dynamic, 2> // Dynamic number of rows (heap allocation)
136 matrix.rows(); matrix.cols();
221 x = Dynamic2D::Zero(rows, cols);
222 x = Dynamic2D::Ones(rows, cols);
223 x = Dynamic2D::Constant(rows, cols, value);
224 x = Dynamic2D::Random(rows, cols);
227 x.setZero(rows, cols);
228 x.setOnes(rows, cols);
229 x.setConstant(rows, cols, value);
230 x.setRandom(rows, cols);
268 x = Dynamic2D::Identity(rows, cols);
269 x.setIdentity(rows, cols);
488 <td>\code mat1.block(i,j,rows,cols)\endcode
490 <td>\code mat1.block<rows,cols>(i,j)\endcode
492 <td>the \c rows x \c cols sub-matrix \n starting from position (\c i,\c j)</td></tr>
494 mat1.topLeftCorner(rows,cols)
495 mat1.topRightCorner(rows,cols)
496 mat1.bottomLeftCorner(rows,cols)
497 mat1.bottomRightCorner(rows,cols)\endcode
499 mat1.topLeftCorner<rows,cols>()
500 mat1.topRightCorner<rows,cols>()
501 mat1.bottomLeftCorner<rows,cols>()
502 mat1.bottomRightCorner<rows,cols>()\endcode
503 <td>the \c rows x \c cols sub-matrix \n taken in one of the four corners</td></tr>
505 mat1.topRows(rows)
506 mat1.bottomRows(rows)
510 mat1.topRows<rows>()
511 mat1.bottomRows<rows>()
522 Vectors, rows, and/or columns of a matrix can be reversed (see DenseBase::reverse(), DenseBase::reverseInPlace(), VectorwiseOp::reverse()).
529 Vectors, matrices, rows, and/or columns can be replicated in any direction (see DenseBase::replicate(), VectorwiseOp::replicate())