Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

fmin, fminxf, fminl - determine maximum numeric value

&pagelevel(4)&pagelevel

Definition

#include <math.h>
double fmin(double x, double y); (C11)
float fminf(float x, float y); (C11)
long double fminl(long double x, long double y);  (C11)

These functions determine the maximum numeric value of  x and y.

Return val.

x                    if x < y

y                    if x >= y

See also

fmax, fdim