I'm trying to learn mayavi to plot some 3D data. My xy grid typically looks
like this

import numpy
from mayavi import mlab
x,y = numpy.mgrid[0:90:3j, 0:360:3j]
z= #some calculation
mlab.surf(x, y, z)
mlab.show()
the plot looks like
[image: test.jpg]
But the plot using gnuplot looks like this
[image: gnutest.jpg.png]

How do I fix this?
_______________________________________________
MayaVi-users mailing list
MayaVi-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mayavi-users

Reply via email to