fmin
From cppreference.com
Defined in header <math.h>
|
||
float fminf( float x, float y ); |
(since C99) | |
double fmin( double x, double y ); |
(since C99) | |
long double fminl( long double x, long double y ); |
(since C99) | |
Returns the smaller of two floating point arguments.
[edit] Parameters
x, y | - | floating point values |
[edit] Return value
The smaller of two floating point values.
[edit] See also
(C99) |
larger of two floating point values (function) |
C++ documentation for fmin
|