cf.Data.trunc¶
- Data.trunc(inplace=False, i=False)[source]¶
Return the truncated values of the data array.
The truncated value of the number,
x, is the nearest integer which is closer to zero thanxis. In short, the fractional part of the signed numberxis discarded.Added in version 1.0.
- Parameters:
- Returns:
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.trunc().array) [-1. -1. -1. -1. 0. 1. 1. 1. 1.]