cf.Field.ceil

Field.ceil(i=False)[source]

Return the ceiling of the data array.

New in version 1.0.

See also

floor, rint, trunc

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.ceil().array
[-1. -1. -1. -1.  0.  1.  2.  2.  2.]

Previous topic

cf.Field.binary_mask

Next topic

cf.Field.chunk

This Page