comparison evaluationtools/cell2list.m @ 1:8973548174c1 tip

adding tools to repo
author christopherh
date Mon, 06 May 2013 14:43:47 +0100
parents
children
comparison
equal deleted inserted replaced
0:0a4ad3e72e75 1:8973548174c1
1
2 function list = cell2list(cells, separator)
3
4 list = '';
5
6 if ~isempty(cells)
7
8 list = cells{1};
9
10 for i = 2:length(cells)
11
12 list = [list separator cells{i}];
13
14 end
15 end