I have 3 numpy arrays as follow:
import numpy as np
from mayavi import mlab
x = np.arange(0,101,1)
a = np.arange(0,51,1)
b = np.arange(51,76,0.5)
z = np.hstack((a,b))
y = np.zeros(x.shape)
values = np.random.random(x.shape)
They define a vertical plane that I would like to plot as a colormap. Any idea on how to do that using Mayavi and Python?
I tried different things based on the http://docs.enthought.com/mayavi/mayavi/auto/example_surface_from_irregular_data.html example but I am stuck with the fact that the plane is vertical...