VMS Help
CRTL, fmin
*Conan The Librarian
|
Returns the minimum numeric value of its arguments.
This function is supported on OpenVMS Integrity servers and
Alpha only.
Format
#include <math.h>
double fmin (double x, double y);
float fminf (float x, float y);
long double fminl (long double x, long double y);
x
A real value.
y
A real value.
The fmin functions 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, then the numeric value
is returned.
n Upon success, the minimum numeric value of the
arguments. If just one argument is a NaN, the
other argument is returned.
NaN Both x and y are NaNs.