MatrixBerryCore
cellstr2colstr.m
Go to the documentation of this file.
1 function resStr=cellstr2colstr(inpCArr,indentStr)
2 newLineSep=sprintf('\n');
3 if nargin>1
4  inpCArr=strcat({indentStr}, inpCArr,{newLineSep});
5 else
6  inpCArr=strcat({indentStr}, inpCArr);
7 end
8 %
9 resStr=[inpCArr{:}];
10 resStr=resStr(1:(end-length(newLineSep)));
function cellstr2colstr(in inpCArr, in indentStr)
CELLSTR2COLSTR transforms a cell array of strings into a row string that looks like a column when dis...