What is a good way to combine strings (of varying length) that are stored in cell arrays?

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!

More Answers (0)

Categories

Products

Community Treasure Hunt

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

Start Hunting!