NumPybroadcast函数

/ / NumPybroadcast函数

如前所述,NumPy具有内置的广播支持,此功能模仿广播机制,它返回一个封装了将一个数组广播到另一个数组的输出对象 。

该函数将两个数组作为输入参数。以下示例说明了其用法。

无涯教程网

import numpy as np 
x = np.array([[1], [2], [3]]) 
y = np.array([4, 5, 6])  
   
# tobroadcast x against y 
b = np.broadcast(x,y)  
# it has an iterator property, a tuple of iterators along self's "components." 

print 'Broadcast x against y:' 
r,c = b.iters 
print r.next(), c.next() 
print r.next(), c.next() 
print '\n'  
# shape attribute returns the shape of broadcast object 

print 'The shape of the broadcast object:' 
print b.shape 
print '\n'  
# to add x and y manually using broadcast 
b = np.broadcast(x,y) 
c = np.empty(b.shape) 

print 'Add x and y manually using broadcast:' 
print c.shape 
print '\n'  
c.flat = [u + v for (u,v) in b] 

print 'After applying the flat function:' 
print c 
print '\n'  
# same result obtained by NumPy's built-in broadcasting support 

print 'The summation of x and y:' 
print x + y

其输出如下-

Broadcast x against y:
1 4
1 5

The shape of the broadcast object:
(3, 3)

Add x and y manually using broadcast:
(3, 3)

After applying the flat function:
[[ 5. 6. 7.]
 [ 6. 7. 8.]
 [ 7. 8. 9.]]

The summation of x and y:
[[5 6 7]
 [6 7 8]
 [7 8 9]]

祝学习愉快! (发现内容有误?请选中要编辑的内容 -> 右键 -> 修改 -> 提交!帮助我们改进教程质量)

精选教程推荐

👇 以下精选教程可能对您有帮助,拓展您的技术视野

生成式推荐系统算法与实践 -〔傅聪〕

程序员职业规划手册 -〔雪梅〕

超级访谈:对话道哥 -〔吴翰清(道哥)〕

PyTorch深度学习实战 -〔方远〕

Spark性能调优实战 -〔吴磊〕

基于人因的用户体验设计课 -〔刘石〕

职场求生攻略 -〔臧萌〕

数据分析实战45讲 -〔陈旸〕

程序员进阶攻略 -〔胡峰〕

📝 好记忆不如烂笔头,留下您的学习笔记吧!

暂无学习笔记,成为第一个分享的人吧!

您的笔记将帮助成千上万的学习者