What is a good way to combine strings (of varying length) that are stored in cell arrays?
6 views (last 30 days)
Show older comments
John Jendzurski
on 31 Mar 2014
Commented: John Jendzurski
on 31 Mar 2014
Suppose I have the following variables A and B (both 3x1 cell arrays) as follows.
A = {'A'; 'AB'; 'ABC'}; B = {'1'; '12'; '123'};
How can I create the new variable C (also a 3x1 cell array) as shown below?
C =
'A1'
'AB12'
'ABC123'
I have looked into various functions like strjoin(), but nothing has been apparent.
Thanks!
0 Comments
Accepted Answer
More Answers (0)
See Also
Categories
Find more on Characters and Strings in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!