Lines Matching refs:row
29 for(std::size_t row=0; row<ROWS; row++)
33 b(row,col) = float32_t(row*col);
54 To set the second row to `0.0f`, you can do:
57 result.row(1) = 0.0f;
60 To set the odd elements of the 3rd row to `0.0f` we can do:
63 result.row<2>(2,1) = 0.0f;
66 The first argument `2` is the row number (starting from `0`).
68 The second argument `1` is where is the row we start the view : element `1`.
72 The `row` API is:
76 VectorView<P,S> row(const index_t i,const index_t start=0,const index_t stop=C)
82 `i` is the row index
113 You specify the row start and row end, then column start and column end.