annotate core/tools/implode.m @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
rev   line source
wolffd@0 1 function out = implode(divider, input);
wolffd@0 2 % out = implode(divider, input)
wolffd@0 3
wolffd@0 4 out = [];
wolffd@0 5 for i = 1:numel(input)
wolffd@0 6
wolffd@0 7 % only put divider inbetween data
wolffd@0 8 if i > 1
wolffd@0 9
wolffd@0 10 out = sprintf('%s%s%d', out, divider, input(i));
wolffd@0 11 else
wolffd@0 12
wolffd@0 13 out = sprintf('%d', input(i));
wolffd@0 14 end
wolffd@0 15 end