CountInRange

Computes the number of elements of the vector whose values are in the specified range.

Syntax

IppStatus ippsCountInRange_32s(const Ipp32s* pSrc, int len, int* pCounts, Ipp32s lowerBound, Ipp32s upperBound);

Parameters

pSrc

Pointer to the first input vector.

pCounts

Pointer to the second input vector which stores the result.

len

Number of elements in the vector.

lowerBound

Lower boundary of the range.

upperBound

Upper boundary of the range.

Description

The function ippsCountInRange is declared in the ipps.h file. This function computes the number of elements of the vector pSrc whose values are in the range lowerBound < pSrc[n] < upperBound. The total number of such elements are stored in the pCounts.

Return Values

ippStsNoErr

Indicates no error.

ippStsNullPtrErr

Indicates an error when the pSrc or pSCounts pointer is NULL.

ippStsSizeErr

Indicates an error when len is less than or equal to 0.

Submit feedback on this help topic

Copyright © 2000 - 2011, Intel Corporation. All rights reserved.