Older Newer
Tue, 24 Dec 2019 03:55:43 . . . . SyneRyder [Initial function definition]


Changes by last author:

Added:
= fmax =

== Syntax ==

double fmax(double a, double b, ...)

== Arguments ==

:a

::Any floating-point double value.

:b

::Any floating-point double value.

:...

::Any number of floating-point double values.

== Return ==

The higher value of all given parameters.

== Description ==

Returns the largest of the given values.

== Example ==

<code>

double p = fmax(1.0, 2.0); // sets p to 2.0

</code>

== See Also ==

add, fmin, max, min, sub