cf.Data.ceil¶
-
Data.
ceil
(inplace=False, i=False)[source]¶ The ceiling of the data, element-wise.
The ceiling of
x
is the smallest integern
, such thatn>=x
.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.ceil().array) [-1. -1. -1. -1. 0. 1. 2. 2. 2.]