Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to make a 3-dimensional surface plot for the expression: z = y^2/x, for x in the interval [-2,2] and y in the interval [-1.4,1.4]. I also want the z-values to range from -4 to 4.

The problem is that when I'm viewing the finished surfaceplot, the z-axis values do not stop at [-4,4].

So my question is how I can "remove" the z-axis value that range outside the intervall [-4,4] from the finished plot?

My code is:

from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt
import numpy as np

fig = plt.figure()
ax = fig.gca(projection="3d")

x = np.arange(-2.0,2.0,0.1,float)       # x in interval [-2,2]
y = np.arange(-1.4,1.4,0.1,float)       # y in interval [-1.4,1.4]
x,y = np.meshgrid(x,y)
z = (y**2/x)                            # z = y^2/x

ax.plot_surface(x, y, z,rstride=1, cstride=1, linewidth=0.25)

ax.set_zlim3d(-4, 4)                    # viewrange for z-axis should be [-4,4] 
ax.set_ylim3d(-2, 2)                    # viewrange for y-axis should be [-2,2] 
ax.set_xlim3d(-2, 2)                    # viewrange for x-axis should be [-2,2] 
plt.show()
share|improve this question

1 Answer

clipping your data will accomplish this, but it's not very pretty.

z[z>4]= np.nan
z[z<-4]= np.nan
share|improve this answer
Is there no better way to do this? To somehow "cut" away the z-values outside the range of [-4,4] when viewing the plot? – user605243 Feb 6 '11 at 15:28
@user605243: in principle, you should be able to use a masked_array, like you can with 2D plots. In practice it doesn't seem to work (although the necessary changes in axes3d.py to get it to don't seem too daunting.) Unfortunately I couldn't actually get the np.nan trick to work either, with lots of "CGPathCloseSubpath: no current point." errors. – DSM Feb 6 '11 at 15:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.