MatrixBerryCore
sepcellstrbysep.m
Go to the documentation of this file.
1 function outCMat = sepcellstrbysep(inpCVec,sepStr)
2 outCVec=cellfun(@(x)strsplit(x,sepStr),inpCVec,'UniformOutput',false);
3 outCMat=vertcat(outCVec{:});
function sepcellstrbysep(in inpCVec, in sepStr)
SEPCELLSTRBYSEP splits elements of input cell column vector of strings using a specified separator an...