cf.Field.trunc¶
- Field.trunc(*args, **kwargs)[source]¶
Truncate the data, element-wise.
The truncated value of the scalar
x
, is the nearest integeri
which is closer to zero thanx
is. I.e. the fractional part of the signed numberx
is discarded.Added in version 1.0.
- Parameters:
- Returns:
Examples
>>> print(f.array) [-1.9 -1.5 -1.1 -1. 0. 1. 1.1 1.5 1.9] >>> print(f.trunc().array) [-1. -1. -1. -1. 0. 1. 1. 1. 1.] >>> f.trunc(inplace=True) >>> print(f.array) [-1. -1. -1. -1. 0. 1. 1. 1. 1.]