I'm using a program called pyxplot and I'm doing some colourmaps. To specify the colors, I can use RGB, HSB or CMYK patterns using
set colourmap ( rgb<r>:<g>:<b> |
hsb<h>:<s>:<b> |
cmyk<c>:<m>:<y>:<k> )
All values goes from 0 to 1 and that specifies a color for the f(x,y) = c1 function. For example, I can do
set colourmap rgb(c1):(0):(0)
and it gives me a colourmap from white to red (red for values of c1 that are 1, white for 0) I want to know if someone has an idea to form some color patterns (or if someone has some reference) like the 'jet' of Matlab of this page http://www.mathworks.com/help/techdoc/ref/colormapeditor.html Because I try to combine colors but i can't get nice patterns.
I could do
set colourmap hsb(0.5*c1+0.1):(1):(1)
and it gives me from orange to blue on hsb range of colours, but, what if I want other colours in the range?