view general/arrutils/catsep.m @ 61:eff6bddf82e3 tip

Finally implemented perceptual brightness thing.
author samer
date Sun, 11 Oct 2015 10:20:42 +0100
parents f0a3d7d7a0e3
children
line wrap: on
line source
% catsep - Format nonempty list of string with comma separators
% catsep :: {[N]->string} -> string.
function s=catsep(sep,list)
	s=list{1}; for i=2:length(list), s=[s,sep,list{i}]; end
end