Returns the input argument rounded to the nearest Integer. Examples:
round(2.4) -> 2 round(2.6) -> 3 round(-1.3) -> -1 round(-1.6) -> -2
function round extends Modelica.Icons.Function; input Real v "Real number"; output Integer i "Real number v rounded to nearest integer"; end round;
Developed 2010 at the DLR Institute of System Dynamics and Control