Round toward Negative Infinity
- Updated2023-02-17
- 1 minute(s) read
Round toward Negative Infinity
Expresses the input to the next lower round integer.
For example, if the input is 3.8, the result is 3. If the input is -3.8, the result is -4.
Inputs/Outputs

x
An input to this operation.
This input supports scalar numbers, arrays or clusters of numbers, arrays of clusters of numbers, and waveforms.

rounded number
The resulting lowest integer, closest to the input value.
When x is of the form x = a + bi, that is, when x is complex, the function returns a complex number defined by the next lowest integers to the real and imaginary parts of x. The following equation defines rounded number:
floor(x) = floor(a) + i floor(b)