NumPy 数组操作 numpy.broadcast_to
此函数将一个数组广播到新的形状。它返回原始数组的只读视图。它通常不是连续的。如果新形状不符合NumPy的广播规则,该函数可能会引发ValueError。
注意 − 此函数在版本1.10.0及以上可用。
该函数接受以下参数。
numpy.broadcast_to(array, shape, subok)
示例
import numpy as np
a = np.arange(4).reshape(1,4)
print 'The original array:'
print a
print '\n'
print 'After applying the broadcast_to function:'
print np.broadcast_to(a,(4,4))
它应该产生以下输出 –
[[0 1 2 3]
[0 1 2 3]
[0 1 2 3]
[0 1 2 3]]