np.ceil函数
时间: 2023-07-23 09:04:32 浏览: 121
Numpy学习笔记整理.pdf
np.ceil函数是numpy库中的向上取整函数,也称为上取整函数。它的作用是返回大于或等于输入值的最小整数。如果输入值本身就是整数,则返回该整数本身。
例如,np.ceil(1.4)返回2.0,np.ceil(2.0)返回2.0,np.ceil(-1.5)返回-1.0。
下面是一个使用np.ceil函数的示例:
```python
import numpy as np
x = np.array([1.2, 2.6, 3.0, -2.7, -3.5])
print(np.ceil(x))
```
输出结果:
```
[ 2. 3. 3. -2. -3.]
```
以上代码中,np.ceil函数对数组x中的每个元素进行了向上取整操作,并将结果输出。
阅读全文