I am using matplotlib using python 3.4. When I start my program, I have the following warning message:
C:\\Python34-32bits\\lib\\site-packages\\matplo
It would be useful to see the code, however remember to set the parameters of the plot first, only then initialize the plot.
Exemple, what you may have done:
plt.pcolormesh(X, Y, Z) plt.axes().set_aspect('equal')
What you have to do:
plt.axes().set_aspect('equal') plt.pcolormesh(X, Y, Z)