Lines Matching full:rows
50 \li \c RowsAtCompileTime and \c ColsAtCompileTime are the number of rows and columns of the matrix as known at compile-time or \c Dynamic.
53 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:
56 Matrix<double, Dynamic, 2> // Dynamic number of rows (heap allocation)
146 matrix.rows(); matrix.cols();
231 x = Dynamic2D::Zero(rows, cols);
232 x = Dynamic2D::Ones(rows, cols);
233 x = Dynamic2D::Constant(rows, cols, value);
234 x = Dynamic2D::Random(rows, cols);
237 x.setZero(rows, cols);
238 x.setOnes(rows, cols);
239 x.setConstant(rows, cols, value);
240 x.setRandom(rows, cols);
278 x = Dynamic2D::Identity(rows, cols);
279 x.setIdentity(rows, cols);
498 <td>\code mat1.block(i,j,rows,cols)\endcode
500 <td>\code mat1.block<rows,cols>(i,j)\endcode
502 <td>the \c rows x \c cols sub-matrix \n starting from position (\c i,\c j)</td></tr>
504 mat1.topLeftCorner(rows,cols)
505 mat1.topRightCorner(rows,cols)
506 mat1.bottomLeftCorner(rows,cols)
507 mat1.bottomRightCorner(rows,cols)\endcode
509 mat1.topLeftCorner<rows,cols>()
510 mat1.topRightCorner<rows,cols>()
511 mat1.bottomLeftCorner<rows,cols>()
512 mat1.bottomRightCorner<rows,cols>()\endcode
513 <td>the \c rows x \c cols sub-matrix \n taken in one of the four corners</td></tr>
515 mat1.topRows(rows)
516 mat1.bottomRows(rows)
520 mat1.topRows<rows>()
521 mat1.bottomRows<rows>()
532 Vectors, rows, and/or columns of a matrix can be reversed (see DenseBase::reverse(), DenseBase::reverseInPlace(), VectorwiseOp::reverse()).
539 Vectors, matrices, rows, and/or columns can be replicated in any direction (see DenseBase::replicate(), VectorwiseOp::replicate())