Evaluates which of the two numbers is higher
#include <Math.au3>
_Max ( $iNum1, $iNum2 )
$iNum1 | First number. |
$iNum2 | Second number. |
Success: | the higher of the two numbers. |
Failure: | 0 and sets the @error flag to non-zero |
@error: | 1 - $iNum1 isn't a number. 2 - $iNum2 isn't a number. |
This function works with floats as well as integers.