Numpy 的 fromstring(~)
方法根据指定的字符串构造 Numpy 数组。
参数
1. string
| str
将用于构造 Numpy 数组的字符串。
2. dtype
| string
或 type
| optional
Numpy 数组中存储的数据类型。默认情况下,dtype=float
。
3. count
| int
| optional
从字符串开头读取的数据数。
4. sep
| string
用于分隔输入字符串中的元素的分隔符。默认值已被弃用,因此请始终指定此参数。
返回值
具有指定数据类型的 Numpy 数组。
例子
基本用法
要读取空格分隔的格式:
np.fromstring("4 5.6", sep=" ")
array([4. , 5.6])
指定计数
要仅读取前两个data-points,请像这样设置count=2
:
np.fromstring("4,5,6,7", count=2, sep=",")
array([4., 5.])
相关用法
- Python Django fromstr用法及代码示例
- Python dict fromkeys()用法及代码示例
- Python NumPy fromfunction方法用法及代码示例
- Python NumPy frombuffer方法用法及代码示例
- Python Django fromfile用法及代码示例
- Python Django from_queryset用法及代码示例
- Python NumPy fromiter方法用法及代码示例
- Python frozenset()用法及代码示例
- Python frexp()用法及代码示例
- Python fractions.Fraction用法及代码示例
- Python fractions.Fraction.limit_denominator用法及代码示例
- Python fractions.Fraction.__floor__用法及代码示例
- Python NumPy fliplr方法用法及代码示例
- Python BeautifulSoup find_next方法用法及代码示例
- Python functools.wraps用法及代码示例
- Python NumPy floor方法用法及代码示例
- Python functools.singledispatchmethod用法及代码示例
- Python float转exponential用法及代码示例
- Python calendar firstweekday()用法及代码示例
- Python NumPy full方法用法及代码示例
- Python NumPy flatten方法用法及代码示例
- Python float.is_integer用法及代码示例
- Python Django format_lazy用法及代码示例
- Python format()用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 NumPy | fromstring method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。