本文简要介绍 python 语言中 numpy.outer
的用法。
用法:
numpy.outer(a, b, out=None)
计算两个向量的外积。
给定两个向量
a = [a0, a1, ..., aM]
和b = [b0, b1, ..., bN]
,外积 [1] 是:[[a0*b0 a0*b1 ... a0*bN ] [a1*b0 . [ ... . [aM*b0 aM*bN ]]
- a: (M,) 数组
第一个输入向量。如果输入不是一维的,则输入被展平。
- b: (N,) 数组
第二个输入向量。如果输入不是一维的,则输入被展平。
- out: (M, N) ndarray,可选
存储结果的位置
- out: (M, N) ndarray
out[i, j] = a[i] * b[j]
参数:
返回:
参考:
: G. H. Golub 和 C. F. Van Loan,矩阵计算,第 3 版,马里兰州巴尔的摩,约翰霍普金斯大学出版社,1996 年,第 3 页。 8.
1:
例子:
制作一个(非常粗略的)网格来计算 Mandelbrot 集:
>>> 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]])
使用“vector” 字母的示例:
>>> 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)
相关用法
- Python numpy ones用法及代码示例
- Python numpy ones_like用法及代码示例
- Python numpy ogrid用法及代码示例
- Python numpy obj2sctype用法及代码示例
- Python numpy RandomState.standard_exponential用法及代码示例
- Python numpy hamming用法及代码示例
- Python numpy legendre.legint用法及代码示例
- Python numpy chararray.ndim用法及代码示例
- Python numpy chebyshev.chebsub用法及代码示例
- Python numpy chararray.nbytes用法及代码示例
- Python numpy ma.indices用法及代码示例
- Python numpy matrix.A1用法及代码示例
- Python numpy MaskedArray.var用法及代码示例
- Python numpy ma.zeros用法及代码示例
- Python numpy broadcast用法及代码示例
- Python numpy matrix.T用法及代码示例
- Python numpy matrix.I用法及代码示例
- Python numpy MaskedArray.T用法及代码示例
- Python numpy hermite.hermfromroots用法及代码示例
- Python numpy hermite_e.hermediv用法及代码示例
- Python numpy recarray.dot用法及代码示例
- Python numpy random.mtrand.RandomState.wald用法及代码示例
- Python numpy trim_zeros用法及代码示例
- Python numpy chebyshev.chebdiv用法及代码示例
- Python numpy linalg.svd用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.outer。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。