view general/arrutils/catsep.m @ 42:ae596261e75f

Various fixes and development to audio handling
author samer
date Tue, 02 Dec 2014 14:51:13 +0000
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