NumPy 中numpy.fromstring( )函数怎么使用,并举例
时间: 2023-05-31 21:06:26 浏览: 113
numpy.fromstring()函数用于将字符串转换为NumPy数组。该函数的语法如下:
numpy.fromstring(string, dtype=float, count=-1, sep='')
其中,参数string指定要转换为数组的字符串,dtype指定输出数组的数据类型(默认为float),count指定要转换的元素数量(默认为-1,表示全部转换),sep指定分隔符(默认为空)。
下面是一个例子:
```python
import numpy as np
s = '1 2 3 4 5'
a = np.fromstring(s, dtype=int, sep=' ')
print(a)
```
输出结果为:
```
[1 2 3 4 5]
```
在上面的例子中,将字符串s转换为了一个由整型元素组成的NumPy数组。字符串中的元素需要通过空格分隔。
阅读全文