我将如何使用在 python 中创建一个计数网格matplotlib.pyplot
,其中网格是一种颜色,z
变量低于零,另一种颜色z
等于或大于零?我不是很熟悉,matplotlib
所以如果有人能给我一个简单的方法,那就太好了。
到目前为止,我有:
x= np.arange(0,361)
y= np.arange(0,91)
X,Y = np.meshgrid(x,y)
area = funcarea(L,D,H,W,X,Y) #L,D,H and W are all constants defined elsewhere.
plt.figure()
plt.contourf(X,Y,area)
plt.show()