cf.Count.rint¶
-
Count.
rint
(*args, **kwargs)[source]¶ Round the data to the nearest integer, element-wise.
New in version 1.0.
- Parameters
- Returns
Examples:
>>> print(f.array) [-1.9 -1.5 -1.1 -1. 0. 1. 1.1 1.5 1.9] >>> print(f.rint().array) [-2. -2. -1. -1. 0. 1. 1. 2. 2.] >>> f.rint(inplace=True) >>> print(f.array) [-2. -2. -1. -1. 0. 1. 1. 2. 2.]