horzcat cell array of string

1 view (last 30 days)
Mederic Mainson
Mederic Mainson on 21 Sep 2016
Commented: KSSV on 21 Sep 2016
Hi Guys, I am a bit buffled, it shouldnt be so hard. I have a cell array of strings, see image below for details. I want to combine the 2 colunms of this cell array into one colunm. i do this:
B=[A{:,1} A{:,2}];
But it combines everything into one unique cell... Help please. Cheers Medie

Accepted Answer

Walter Roberson
Walter Roberson on 21 Sep 2016
strcat(A(:,1), {' '}, A(:,2))

More Answers (1)

KSSV
KSSV on 21 Sep 2016
a1 = {'2016/09/20'} ;
a2 = {'03:16:38'} ;
strcat(a1,a2)
  4 Comments
Walter Roberson
Walter Roberson on 21 Sep 2016
That will not leave the customary space between the parts. The strcat I show will add in the space.
KSSV
KSSV on 21 Sep 2016
space can be added using: strcat(a1,{' '},a2). I was thinking he wanted to merge them into single.

Sign in to comment.

Categories

Find more on Data Types in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!