Computes the maximum order of a vector.
IppStatus ippsMaxOrder_16s(const Ipp16s* pSrc, int len, int* pOrder);
IppStatus ippsMaxOrder_32s(const Ipp32s* pSrc, int len, int* pOrder);
IppStatus ippsMaxOrder_32f(const Ipp32f* pSrc, int len, int* pOrder);
IppStatus ippsMaxOrder_64f(const Ipp64f* pSrc, int len, int* pOrder);
pSrc |
Pointer to the source vector. |
len |
Number of elements in the vector. |
pOrder |
Pointer to the result value. |
The function ippsMaxOrder is declared in the ipps.h file. This function finds the maximum binary number in elements of the exponent vector pSrc, and stores the result in pOrder.
ippStsNoErr |
Indicates no error. |
ippStsNullPtrErr |
Indicates an error when the pSrc or pOrder pointer is NULL. |
ippStsSizeErr |
Indicates an error when len is less than or equal to 0. |
ippStsNanArg |
Indicates a warning when NaN is encountered in the input data vector. |
Copyright © 2000 - 2011, Intel Corporation. All rights reserved.