cf.Data.floor

Data.floor(inplace=False, i=False)[source]

Return the floor of the data array.

New in version 1.0.

See also

ceil, rint, trunc

Parameters
inplace: bool, optional

If True then do the operation in-place and return None.

i: deprecated at version 3.0.0

Use the inplace parameter instead.

Returns

Data or None

Examples

>>> d = cf.Data([-1.9, -1.5, -1.1, -1, 0, 1, 1.1, 1.5 , 1.9])
>>> 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.]