numpy.outer#
- numpy.outer(a, b, out=None)[源代码]#
计算两个向量的外积.
给定两个长度分别为
M
和N
的向量 a 和 b,外积 [1] 是:[[a_0*b_0 a_0*b_1 ... a_0*b_{N-1} ] [a_1*b_0 . [ ... . [a_{M-1}*b_0 a_{M-1}*b_{N-1} ]]
- 参数:
- a(M,) array_like
第一个输入向量.如果输入尚未是1维的,则会被展平.
- b(N,) array_like
第二个输入向量.如果输入不是一维的,则会被展平.
- out(M, N) ndarray, 可选
存储结果的位置
在 1.9.0 版本加入.
- 返回:
- out(M, N) ndarray
out[i, j] = a[i] * b[j]
参见
inner
einsum
einsum('i,j->ij', a.ravel(), b.ravel())
是等效的.ufunc.outer
对除1D以外的维度和其他操作的泛化.``np.multiply.outer(a.ravel(), b.ravel())`` 是等效的.
linalg.outer
一个与 Array API 兼容的
np.outer
变体,仅接受一维输入.tensordot
np.tensordot(a.ravel(), b.ravel(), axes=((), ()))
是等效的.
参考文献
[1]G. H. Golub and C. F. Van Loan, Matrix Computations, 3rd ed., Baltimore, MD, Johns Hopkins University Press, 1996, pg. 8.
示例
创建一个(非常粗糙的)网格用于计算 Mandelbrot 集:
>>> import numpy as np >>> rl = np.outer(np.ones((5,)), np.linspace(-2, 2, 5)) >>> rl array([[-2., -1., 0., 1., 2.], [-2., -1., 0., 1., 2.], [-2., -1., 0., 1., 2.], [-2., -1., 0., 1., 2.], [-2., -1., 0., 1., 2.]]) >>> im = np.outer(1j*np.linspace(2, -2, 5), np.ones((5,))) >>> im array([[0.+2.j, 0.+2.j, 0.+2.j, 0.+2.j, 0.+2.j], [0.+1.j, 0.+1.j, 0.+1.j, 0.+1.j, 0.+1.j], [0.+0.j, 0.+0.j, 0.+0.j, 0.+0.j, 0.+0.j], [0.-1.j, 0.-1.j, 0.-1.j, 0.-1.j, 0.-1.j], [0.-2.j, 0.-2.j, 0.-2.j, 0.-2.j, 0.-2.j]]) >>> grid = rl + im >>> grid array([[-2.+2.j, -1.+2.j, 0.+2.j, 1.+2.j, 2.+2.j], [-2.+1.j, -1.+1.j, 0.+1.j, 1.+1.j, 2.+1.j], [-2.+0.j, -1.+0.j, 0.+0.j, 1.+0.j, 2.+0.j], [-2.-1.j, -1.-1.j, 0.-1.j, 1.-1.j, 2.-1.j], [-2.-2.j, -1.-2.j, 0.-2.j, 1.-2.j, 2.-2.j]])
使用字母”向量”的示例:
>>> x = np.array(['a', 'b', 'c'], dtype=object) >>> np.outer(x, [1, 2, 3]) array([['a', 'aa', 'aaa'], ['b', 'bb', 'bbb'], ['c', 'cc', 'ccc']], dtype=object)