原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.fromstring.html
校对:(虚位以待)
numpy.
fromstring
(string, dtype=float, count=-1, sep='')根据字符串中的原始二进制或文本数据初始化的新1-D数组。
参数: | string:str
dtype:数据类型,可选
count:int,可选
sep:str,可选
|
---|---|
返回: | arr:ndarray
|
上升: | ValueError
|
也可以看看
例子
>>> np.fromstring('\x01\x02', dtype=np.uint8)
array([1, 2], dtype=uint8)
>>> np.fromstring('1 2', dtype=int, sep=' ')
array([1, 2])
>>> np.fromstring('1, 2', dtype=int, sep=',')
array([1, 2])
>>> np.fromstring('\x01\x02\x03\x04\x05', dtype=np.uint8, count=3)
array([1, 2, 3], dtype=uint8)