这是有关如何使用的示例numpy.meshgrid
x = np.arange(-5, 5, 0.1)
y = np.arange(-5, 5, 0.1)
xx, yy = np.meshgrid(x, y, sparse=True)
z = np.sin(xx**2 + yy**2) / (xx**2 + yy**2)
如果我在上面有一个meshgrid
like xx
,yy
但我的函数是一个常规函数,而不是vectorized
,f(x,y)
例如,常规math.sin
函数怎么办?
我知道我可以遍历list of lists
, xx
,yy
但我想尝试模拟vectorized
代码。