所有带有两个输入参数的通用函数都有一个属性
outer:
x = np.array([1, 2, 3])np.subtract.outer(x, x)
给出:
array([[ 0, -1, -2], [ 1, 0, -1], [ 2, 1, 0]])
和
np.multiply.outer(x, x)
结果是:
array([[1, 2, 3], [2, 4, 6], [3, 6, 9]])
欢迎分享,转载请注明来源:内存溢出
所有带有两个输入参数的通用函数都有一个属性
outer:
x = np.array([1, 2, 3])np.subtract.outer(x, x)
给出:
array([[ 0, -1, -2], [ 1, 0, -1], [ 2, 1, 0]])
和
np.multiply.outer(x, x)
结果是:
array([[1, 2, 3], [2, 4, 6], [3, 6, 9]])
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)