cf.Data.rint¶
-
Data.
rint
(inplace=False, i=False)[source]¶ Round the data to the nearest integer, element-wise.
New 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.rint().array) [-2. -2. -1. -1. 0. 1. 1. 2. 2.]