Gets a reference of a row in a 2D af::array. More...
array::array_proxy | row (int index) |
Returns a reference to a row. More... | |
const array::array_proxy | row (int index) const |
Returns a reference to a row. More... | |
array::array_proxy | rows (int first, int last) |
Returns a reference to sequence of rows. More... | |
const array::array_proxy | rows (int first, int last) const |
Returns a reference to sequence of rows. More... | |
Gets a reference of a row in a 2D af::array.
This function returns a row or a set of rows from a two dimensional af::array. The reference can be used for indexing into and assignment of values to the af::array object.
array::array_proxy row | ( | int | index | ) |
Returns a reference to a row.
This function returns a row or a set of rows from a two dimensional af::array. The reference can be used for indexing into and assignment of values to the af::array object.
[in] | index | is the index of the row to be returned |
index
const array::array_proxy row | ( | int | index | ) | const |
Returns a reference to a row.
This function returns a row or a set of rows from a two dimensional af::array. The reference can be used for indexing into and assignment of values to the af::array object.
[in] | index | is the index of the row to be returned |
index\ifile
"C:/Users/jmelonak/source/repos/arrayfire/arrayfire/include/af/array.h" array::array_proxy rows | ( | int | first, |
int | last | ||
) |
Returns a reference to sequence of rows.
This function returns a row or a set of rows from a two dimensional af::array. The reference can be used for indexing into and assignment of values to the af::array object.
[in] | first | is the index of the row to be returned |
[in] | last | is the index of the row to be returned |
const array::array_proxy rows | ( | int | first, |
int | last | ||
) | const |
Returns a reference to sequence of rows.
This function returns a row or a set of rows from a two dimensional af::array. The reference can be used for indexing into and assignment of values to the af::array object.
[in] | first | is the index of the row to be returned |
[in] | last | is the index of the row to be returned |