本文简要介绍 python 语言中 numpy.broadcast
的用法。
用法:
class numpy.broadcast
生成一个模仿广播的对象。
- in1, in2, …: array_like
输入参数。
- b: 广播对象
将输入参数相互广播,并返回一个封装结果的对象。其中,它具有
shape
和nd
属性,并且可以用作迭代器。
参数:
返回:
例子:
使用广播手动添加两个向量:
>>> x = np.array([[1], [2], [3]]) >>> y = np.array([4, 5, 6]) >>> b = np.broadcast(x, y)
>>> out = np.empty(b.shape) >>> out.flat = [u+v for (u,v) in b] >>> out array([[5., 6., 7.], [6., 7., 8.], [7., 8., 9.]])
与内置广播比较:
>>> x + y array([[5, 6, 7], [6, 7, 8], [7, 8, 9]])
- numpy.broadcast.index
广播结果中的当前索引
- numpy.broadcast.iters
沿
self
的 “components.” 的迭代器元组- numpy.broadcast.nd
广播结果的维度数。
- numpy.broadcast.ndim
广播结果的维度数。
- numpy.broadcast.numiter
广播结果拥有的迭代器数。
- numpy.shape
广播结果的形状。
- numpy.broadcast.size
广播结果的总大小。
属性:
相关用法
- Python numpy broadcast.nd用法及代码示例
- Python numpy broadcast.size用法及代码示例
- Python numpy broadcast.reset用法及代码示例
- Python numpy broadcast_shapes用法及代码示例
- Python numpy broadcast.numiter用法及代码示例
- Python numpy broadcast.iters用法及代码示例
- Python numpy broadcast_to用法及代码示例
- Python numpy broadcast_arrays用法及代码示例
- Python numpy broadcast.ndim用法及代码示例
- Python numpy broadcast.index用法及代码示例
- Python numpy byte_bounds用法及代码示例
- Python numpy block用法及代码示例
- Python numpy busday_offset用法及代码示例
- Python numpy base_repr用法及代码示例
- Python numpy bartlett用法及代码示例
- Python numpy blackman用法及代码示例
- Python numpy busdaycalendar用法及代码示例
- Python numpy bitwise_xor用法及代码示例
- Python numpy binary_repr用法及代码示例
- Python numpy bitwise_and用法及代码示例
- Python numpy busday_count用法及代码示例
- Python numpy bmat用法及代码示例
- Python numpy bincount用法及代码示例
- Python numpy bitwise_or用法及代码示例
- Python numpy RandomState.standard_exponential用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.broadcast。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。