numpy.outer()函数计算两个向量的外积。
用法: numpy.outer(a, b, out = None)
参数:
a:[数组]第一个输入向量。如果输入不是一维的,则将其展平。
b:[数组]第二个输入向量。如果输入不是一维的,则将其展平。
out :[ndarray,可选]存储结果的位置。
Return :[ndarray]返回两个向量的外积。 out [i,j] = a [i] * b [j]
代码1:
# Python program explaining
# numpy.outer() function
# importing numpy as geek
import numpy as geek
a = geek.ones(4)
b = geek.linspace(-1, 2, 4)
gfg = geek.outer(a, b)
print (gfg)
输出:
[[-1. 0. 1. 2.] [-1. 0. 1. 2.] [-1. 0. 1. 2.] [-1. 0. 1. 2.]]
代码2:
# Python program explaining
# numpy.outer() function
# importing numpy as geek
import numpy as geek
a = geek.ones(5)
b = geek.linspace(-2, 2, 5)
gfg = geek.outer(a, b)
print (gfg)
输出:
[[-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.]]
相关用法
- Python Wand function()用法及代码示例
- Python tell()用法及代码示例
- Python id()用法及代码示例
- Python map()用法及代码示例
- Python dir()用法及代码示例
- Python cmp()用法及代码示例
- Python int()用法及代码示例
- Python ord()用法及代码示例
- Python hex()用法及代码示例
- Python now()用法及代码示例
- Python oct()用法及代码示例
- Python str()用法及代码示例
- Python sum()用法及代码示例
- Python seek()用法及代码示例
- Python reversed()用法及代码示例
注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 numpy.outer() function – Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。