Round down toward \(-∞\).
floor
x = { -2.6 3.75, 2.79 -0.27 }; print floor(x);
will return:
-3 3 2 -1
See also
Functions ceil(), round(), trunc()
ceil()
round()
trunc()