cf.Bounds.ceil¶
- Bounds.ceil(*args, **kwargs)[source]¶
- The ceiling of the data, element-wise. - The ceiling of - xis the smallest integer- n, such that- n>=x.- Added 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.ceil().array) [-1. -1. -1. -1. 0. 1. 2. 2. 2.] >>> f.ceil(inplace=True) >>> print(f.array) [-1. -1. -1. -1. 0. 1. 2. 2. 2.] 
 
 
 
