I'm trying to reproduce this graph in matplotlib (taken from wikipedia)
basically a 2d hsv color space where saturation is set to 1.0. here's what I have done so far
from pylab import *
from numpy import outer
x = outer(arange(0, 1, 0.01), ones(100))
imshow(transpose(x), cmap=cm.hsv)
show()
this plots the hue channel but I don't know how to add a second channel.