matplotlib制作轮廓图的问题

时间:2018-08-10 13:38:16

标签: python matplotlib contourf

我有一个11 x 11的数据数组,并尝试绘制轮廓图。

fig3=plt.figure(3)
contour_qe=plt.contourf(x_sqr,y_sqr,p_sqr,cmap=cm.coolwarm,shading='flat')

fig3.colorbar(contour_qe,shrink=0.5,aspect=5)
plt.show()

x_sqr,y_sqr和z_sqr为11x11数组。 我得到的数字如下: enter image description here

图中有很多空白...我想要得到的是: enter image description here

三角形网格不是必需的。方网也可以。

我该如何生成?我都尝试了“ pcolormesh,contourf”,也不起作用。

0 个答案:

没有答案