cf.Field.trunc

Field.trunc(i=False)[source]

Return the truncated values of the data array.

The truncated value a number, x, is the nearest integer which is closer to zero than x is. In short, the fractional part of the signed number x is discarded.

New in version 1.0.

See also

ceil, floor, rint

Parameters:
i : bool, optional

If True then update the variable in place. By default a new instance is created.

Returns:
out :

The variable with new data array.

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.]

Previous topic

cf.Field.transpose

Next topic

cf.Field.unsqueeze

This Page