Developer Reference for Intel® oneAPI Math Kernel Library for C
v?Fmin
Returns the smaller of each pair of elements of the two vector arguments.
Syntax
vhFmin ( n , a , b , y );
vhFminI(n, a, inca, b, incb, y, incy);
vmhFmin ( n , a , b , y , mode );
vmhFminI(n, a, inca, b, incb, y, incy, mode);
vsFmin ( n , a , b , y );
vsFminI(n, a, inca, b, incb, y, incy);
vmsFmin ( n , a , b , y , mode );
vmsFminI(n, a, inca, b, incb, y, incy, mode);
vdFmin ( n , a , b , y );
vdFminI(n, a, inca, b, incb, y, incy);
vmdFmin ( n , a , b , y , mode );
vmdFminI(n, a, inca, b, incb, y, incy, mode);
Include Files
mkl.h
Input Parameters
Name |
Type |
Description |
|---|---|---|
n |
const MKL_INT |
Specifies the number of elements to be calculated. |
a , b |
const _Float16* for vhFmin const float* for vsFmin const _Float16* for vmhFmin const float* for vmsFmin const double* for vdFmin const double* for vmdFmin |
Pointers to the arrays containing the input vectors a and b . |
inca , incb , incy |
const MKL_INT |
Specifies increments for the elements of a , b , and y . |
mode |
const MKL_INT64 |
Overrides the global VM mode setting for this function call. See vmlSetMode (Sets a new mode for VM functions according to the mode parameter and stores the previous VM mode to oldmode.) for possible values and their description. |
Output Parameters
Name |
Type |
Description |
|---|---|---|
y |
_Float16* for vhFmin float* for vsFmin _Float16* for vmhFmin float* for vmsFmin double* for vdFmin double* for vmdFmin |
Pointer to an array containing the output vector y . |
Description
The v?Fmin function returns a vector with element values equal to the smaller value from each pair of corresponding elements of the two vectors a and b : if bi < aiv?Fmin returns bi , otherwise v?Fmin returns ai .
Special values for Real Function v?Fmin(x, y)
Argument 1 |
Argument 2 |
Result |
VM Error Status |
Exception |
|---|---|---|---|---|
ai not NAN |
NAN |
ai |
||
NAN |
bi not NAN |
bi |
||
NAN |
NAN |
NAN |