min()MathCalculationWeb & Application
int d = min(5, 9); // Sets "d" to 5
int e = min(-4, -12); // Sets "e" to -12
float f = min(12.3, 230.24); // Sets "f" to 12.3
Determines the smallest value in a sequence of numbers.
min(value1, value2)
min(value1, value2, value 3)
int or floatint or floatint or floatint or float (depending on the inputs)
max()
1.0FunctionPDE