MinAbsIndx
MinAbsIndx
Returns the minimum absolute value of a vector and the index of the corresponding element.
Syntax
IppStatus ippsMinAbsIndx_16s(const Ipp16s*
pSrc
, int
len
, Ipp16s*
pMinAbs
, int*
pIndx
);
IppStatus ippsMinAbsIndx_32s(const Ipp32s*
pSrc
, int
len
, Ipp32s*
pMinAbs
, int*
pIndx
);
IppStatus ippsMinAbsIndx_32f(const Ipp32f*
pSrc
, int
len
, Ipp32f*
pMinAbs
, int*
pIndx
);
IppStatus ippsMinAbsIndx_64f(const Ipp64f*
pSrc
, int
len
, Ipp64f*
pMinAbs
, int*
pIndx
);
Include Files
ipps.h
Domain Dependencies
Headers:
ippcore.h
,
ippvm.h
Libraries:
ippcore.lib
,
ippvm.lib
Parameters
- pSrc
- Pointer to the source vector.
- pMinAbs
- Pointer to the output result.
- len
- Number of elements in the vector.
- pIndx
- Pointer to the index value of the corresponding element.
Description
This function returns the minimum absolute value
pMinAbs
of the input vector pSrc
, and the index of the corresponding element pIndx
. If there are several elements with equal maximum absolute value, the first index from the beginning is returned.Return Values
- ippStsNoErr
- Indicates no error.
- ippStsNullPtrErr
- Indicates an error when one of the specified pointers isNULL.
- ippStsSizeErr
- Indicates an error whenlenis less than or equal to 0.