cf.FieldAncillary.trunc¶
-
FieldAncillary.
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.New in version 1.0.
- Parameters
- Returns
FieldAncillary
orNone
The construct with truncated 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.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.]