Sort input arrays. More...

Functions

AFAPI array sort (const array &in, const unsigned dim=0, const bool isAscending=true)
 C++ Interface for sorting an array. More...
 
AFAPI af_err af_sort (af_array *out, const af_array in, const unsigned dim, const bool isAscending)
 C Interface for sorting an array. More...
 

Detailed Description

Sort input arrays.

Sort an multi dimensional array

Function Documentation

AFAPI af_err af_sort ( af_array out,
const af_array  in,
const unsigned  dim,
const bool  isAscending 
)

C Interface for sorting an array.

Parameters
[out]outwill contain the sorted output
[in]inis the input array
[in]dimThe dimension along which numerical difference is performed
[in]isAscendingspecifies the sorting order
Returns
AF_SUCCESS if the execution completes properly
AFAPI array af::sort ( const array in,
const unsigned  dim = 0,
const bool  isAscending = true 
)

C++ Interface for sorting an array.

Parameters
[in]inis the input array
[in]dimThe dimension along which numerical difference is performed
[in]isAscendingspecifies the sorting order
Returns
the sorted output
Examples:
helloworld/helloworld.cpp.