% % hl_map = hl() % % Generates a color map that is cyclic in hue, and more balanced for % luminance than linear maps with constant value and saturation. % % See "hl_color_cycle.m" for details, and compare with MATLAB's "hsv". % % USAGE: % hl_map = hl() % % ARGUMENTS: (none) % % RETURN VALUES: % % hl_map: 256 x 3 matrix containing RGB triplets. % % HARDCODED: (none) % % CALLS: % % -> hl_color_cycle.m % % Mark Dow, May 11, 2008 % function hl_map = hl() hl_map = hl_color_cycle( 1, .4, .95, .95, .35, .8, .85, .3, .8 );