Navigation: Function Reference > General Utility Functions > minD()

minD()

Top  Previous  Next

minD( a, b: Extended ) : Extended;

 

Returns the smaller 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 := minD( a, b );

 

//c is now equal to 10.1;