MatrixBerryCore
+mxberry
+core
+string
catcellstrwithsep.m
Go to the documentation of this file.
1
function
outCVec =
catcellstrwithsep
(inpCMat,sepStr)
2
import
mxberry
.
core
.
string
.catwithsep;
3
nRows=size(inpCMat,1);
4
nCols=size(inpCMat,2);
5
outCVec=cellfun(@(x)
catwithsep
(x,sepStr),...
6
mat2cell(inpCMat,ones(nRows,1),nCols),
'UniformOutput'
,
false
);
mxberry::core
mxberry::core::string::catcellstrwithsep
function catcellstrwithsep(in inpCMat, in sepStr)
CATCELLSTRWITHSEP contatenates columns of input cell matrix of strings using a specified separator an...
mxberry
mxberry::core::string
mxberry::core::string::catwithsep
function catwithsep(in inpStrList, in sepStr)
CATWITHSEP concatenates input cell array of strings inserting a specified separator between the strin...
Generated for MatrixBerryCore by
1.8.13