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

adding tools to repo
author christopherh
date Mon, 06 May 2013 14:43:47 +0100
parents
children
line wrap: on
line source

function list = cell2list(cells, separator)

list = '';

if ~isempty(cells)

    list = cells{1};

    for i = 2:length(cells)
        
        list = [list separator cells{i}];
        
    end
end