|
Navigation: Function Reference > General Utility Functions > maxD() maxD() |
Top Previous Next |
maxD( a, b: Extended ) : Extended;
Returns the larger of a or b, which are floating point numbers.
Parameters
a |
floating point numeric value |
b |
floating point numeric value |
var a: Double;
var b: Double;
var c: Double;
a := 10.1;
b := 25.45;
c := maxD( a, b );
//c is now equal to 25.45;