怎么把numpy数组转化为float
时间: 2024-04-30 13:24:51 浏览: 87
python 工具 字符串转numpy浮点数组的实现
NumPy数组本身就是由浮点数组成的,因此您无需将其转换为浮点数。如果您想确保数组中的元素都是浮点数,可以使用astype()方法将其转换为浮点数类型。例如,将一个整数数组转换为浮点数数组可以使用以下代码:
``` python
import numpy as np
# 创建一个整数数组
int_array = np.array([1, 2, 3, 4, 5])
# 将整数数组转换为浮点数数组
float_array = int_array.astype(float)
# 打印浮点数数组
print(float_array)
```
输出结果:
```
[1. 2. 3. 4. 5.]
```
阅读全文