MATLAB: How to take out light color out of colormap.

colorcolormapfigureplot

I am plotting many curves on one figure. How to take out light color out of colormap, and also why doesn't the color include black? I tried using jet() but its yellow [1 1 0] is too light. I also tried using linspecer() but it gets light when I have 10 curves(A117 and A116 in the figure attached). Thanks a lot!

Best Answer

Try jet(10)/3 to make the colors only a third as bright.
Related Question