...
np.meshgrid简单使用
功能
- 把向量转换成矩阵
实例
x = np.array([1,2,3])
y = np.array([4,5,6])
np.meshgrid(x,y,sparse=True)
结果:
x,y = np.meshgrid(x,y,sparse=True)
x.shape
y.shape
结果:
(1, 3)
(3, 1)
如果没有sparse这个参数会怎样。
np.meshgrid(x,y)
结果:
x,y = np.meshgrid(x,y)
x.shape
x.shape
结果:
(3, 3)
(3, 3)