import numpy as np
x = np.meshgrid(y)
其中y是评估点数组的数组,例如
y = [array([-3., 0., 3.]) array([-3., 0., 3.]) array([-3., 0., 3.])]
建议?
答案 0 :(得分:3)
使用*
- 运算符(即解包运算符):
x = np.meshgrid(*y)
请参阅https://docs.python.org/2/tutorial/controlflow.html#unpacking-argument-lists