cf.Data.rint¶
-
Data.
rint
(i=False)[source]¶ Round elements of the data array to the nearest integer.
New in version 1.0.
Parameters: - i:
bool
, optional If True then update the data array in place. By default a new data array is created.
Returns: out: cf.Data
Examples: >>> print d.array [-1.9 -1.5 -1.1 -1. 0. 1. 1.1 1.5 1.9] >>> print d.rint().array [-2. -2. -1. -1. 0. 1. 1. 2. 2.]
- i: