1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
x.head(n) x.head<n>() x.tail(n) x.tail<n>() x.segment(i, n) x.segment<n>(i) P.block(i, j, rows, cols) P.block<rows, cols>(i, j) P.row(i) P.col(j) P.leftCols<cols>() P.leftCols(cols) P.middleCols<cols>(j) P.middleCols(j, cols) P.rightCols<cols>() P.rightCols(cols) P.topRows<rows>() P.topRows(rows) P.middleRows<rows>(i) P.middleRows(i, rows) P.bottomRows<rows>() P.bottomRows(rows) P.topLeftCorner(rows, cols) P.topRightCorner(rows, cols) P.bottomLeftCorner(rows, cols) P.bottomRightCorner(rows, cols) P.topLeftCorner<rows,cols>() P.topRightCorner<rows,cols>() P.bottomLeftCorner<rows,cols>() P.bottomRightCorner<rows,cols>()
R.row(i) = P.col(j); R.col(j1).swap(mat1.col(j2));
|