cf.List.floor

List.floor(*args, **kwargs)[source]

Floor the data array, element-wise.

The floor of x is the largest integer n, such that n<=x.

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
List or None

The construct with floored data. If the operation was in-place then None is returned.

Examples

>>> print(f.array)
[-1.9 -1.5 -1.1 -1.   0.   1.   1.1  1.5  1.9]
>>> print(f.floor().array)
[-2. -2. -2. -1.  0.  1.  1.  1.  1.]
>>> f.floor(inplace=True)
>>> print(f.array)
[-2. -2. -2. -1.  0.  1.  1.  1.  1.]