Wednesday, November 30, 2016

C Math Maximum, Minimum, and Positive difference Functions

Maximum, Minimum, and Positive difference Functions:
x, y - floating point values

fmax(C99) double fmax( double x, double y );
fmaxf(C99) float fmaxf( float x, float y );
fmaxl(C99) long double fmaxl( long double x, long double y );
fmin(C99) double fmin( double x, double y );
fminf(C99) float fminf( float x, float y );
fminl(C99) long double fminl( long double x, long double y );
fdim(C99) double fdim( double x, double y );
fdimf(C99) float fdimf( float x, float y );
fdiml(C99) long double fdiml( long double x, long double y );

math.h
Trigonometric Functions
Hyperbolic Functions
Exponential and Logarithmic Functions
Power and Absolute-value Functions
Error and Gamma Functions
Nearest Integer Functions
Remainder Functions
Manipulation Functions
Maximum, Minimum, and Positive difference Functions
Floating multiply-add Functions
Classification macro Functions
Comparison macro Functions


Related topics:
Library Functions in C   |   Standard Library in C   |   Header Files in C   |   Functions in C   |   Keywords in C   |   Data Types in C   |   Pointers in C

List of topics: C Programming

No comments:

Post a Comment