Surface Plot

Hi

I’d like to generate a surface plot using mplot3d. However, Z is not a function of X and/or Y. It’s just a set of scalar values. So, the following doesn’t work:

X = np.arange(2, 102, 2)

Y = np.arange(0, 15.15, 0.15)

X, Y = np.meshgrid(X, Y)

Z = f[2]

ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.jet)

Is there a way that I can do this?

Thank you.

Ted