A CF-compliant earth science data analysis library
Data.
floor
Return the floor of the data array.
New in version 1.0.
See also
ceil, rint, trunc
ceil
rint
trunc
TODO
Data or None
Data
None
Examples:
>>> print(d.array) [-1.9 -1.5 -1.1 -1. 0. 1. 1.1 1.5 1.9] >>> print(d.floor().array) [-2. -2. -2. -1. 0. 1. 1. 1. 1.]