|
Many different kinds of matrix manipulation routines are available:
The flat() function flattens an array to one dimension.
The flat function has the following overloads:
array af::flat(const array& in) – flatten an array
af_err af_flat(af_array* out, const af_array in) – C interface for flat() function
The flip() function flips the contents of an array along a chosen dimension.
The flip function has the following overloads:
array af::flip(const array &in, const unsigned dim) – flips an array along a dimension af_err af_flip(af_array *out, const af_array in, const unsigned dim) – C interface for flip()
The join() function can join up to 4 arrays together.
The join function has several overloads:
array af::join(const int dim, const array &first, const array &second) – Joins 2 arrays along a dimension
array af::join(const int dim, const array &first, const array &second, const array &third) – Joins 3 arrays along a dimension.
array af::join(const int dim, const array &first, const array &second, const array &third, const array &fourth) – Joins 4 arrays along a dimension
af_err af_join(af_array *out, const int dim, const af_array first, const af_array second) – C interface function to join 2 arrays along a dimension
af_err af_join_many(af_array *out, const int dim, const unsigned n_arrays, const af_array *inputs) – C interface function to join up to 10 arrays along a dimension
The moddims() function changes the dimensions of an array without changing its data or order. It is important to remember that the function only modifies the metadata associated with the array and does not actually modify the content of the array.
The moddims function has several overloads:
array af::moddims(const array &in, const unsigned ndims, const dim_t *const dims) – mods number of dimensions to match ndims as specidied in the array dims
array af::moddims(const array &in, const dim4 &dims) – mods dimensions as specified by dims
array af::moddims(const array &in, const dim_t d0, const dim_t d1=1, const dim_t d2=1, const dim_t d3=1) – mods dimensions of an array
af_err af_moddims(af_array *out, const af_array in, const unsigned ndims, const dim_t *const dims) – C interface to mod dimensions of an array
The reorder() function changes the order of the dimensions within the array. This actually alters the underlying data of the array.
The reorder function the following several overloads:
array af::reorder(const array &in, const unsigned x, const unsigned y=1, const unsigned z=2, const unsigned w=3) – Reorders dimensions of an array
af_err af_reorder(af_array *out, const af_array in, const unsigned x, const unsigned y, const unsigned z, const unsigned w) – C interface for reordering function
The shift() function shifts data in a circular buffer fashion along a chosen dimension.
The shift function has the following overloads:
array af::shift(const array &in, const int x, const int y=0, const int z=0, const int w=0) – Shifts array along specified dimensions
af_err af_shift(af_array *out, const af_array in, const int x, const int y, const int z, const int w) – C interface for shifting an array
The tile() function repeats an array along a dimension
The tile function has several overloads:
array af::tile(const array &in, const unsigned x, const unsigned y=1, const unsigned z=1, const unsigned w=1) – Tiles array along specified dimensions
array af::tile(const array &in, const dim4 &dims) – Tile an array according to a dim4 object
af_err af_tile(af_array *out, const af_array in, const unsigned x, const unsigned y, const unsigned z, const unsigned w) – C interface for tiling an array
The transpose() function performs a standard matrix transpose. The input array must have the dimensions of a 2D-matrix.
The transpose function has several overloads:
array af::transpose(const array &in, const bool conjugate=false) – Transposes a matrix.
void af::transposeInPlace(array &in, const bool conjugate=false) – Transposes a matrix in-place.
af_err af_transpose(af_array *out, af_array in, const bool conjugate) – C interface to transpose a matrix.
af_err af_transpose_inplace(af_array in, const bool conjugate) – C interface to transpose a matrix in-place.
array() can be used to create a (shallow) copy of a matrix with different dimensions. The number of elements must remain the same as the original array.
The T() and H() methods can be used to form the matrix or vector transpose .
By using a combination of the array restructuring functions, we can quickly code complex manipulation patterns with a few lines of code. For example, consider generating (x,y) coordinates for a grid where each axis goes from 1 to n. Instead of using several loops to populate our arrays we can just use a small combination of the above functions.
Functions provided by arrayfire offer ease and flexibility for efficiently manipulating the structure of arrays. The provided functions can be used as building blocks to generate, shift, or prepare data to any form imaginable!