Determines the minimum numeric value of two floating-point numbers.
#include <math.h> float fminf (x, y) float x; float y; long double fminl (x, y) long double x; long double y;
The fminf and fminl subroutines determine the minimum numeric value of their arguments. NaN arguments are treated as missing data If one argument is a NaN and the other numeric, the fminf and fminl subroutines choose the numeric value.
x | Specifies the value to be computed. |
y | Specifies the value to be computed. |
Upon successful completion, the fminf and fminl subroutines return the minimum numeric value of their arguments.
If one argument is a NaN, the other argument is returned.
If x and y are NaN, a NaN is returned.
fdim, fdimf, or fdiml Subroutine, fmax, fmaxf, or fmaxl Subroutine.
math.h in AIX 5L Version 5.2 Files Reference.