string problem
2 views (last 30 days)
Show older comments
hi, i have two strings
string1='a'
string2='b'
how do i get these into an array so i get:
total=['a', 'b']
I know the above is easy, but i want to be able to add n strings together into the total string array, n has to be defined by the user, in this case it is 2. (the strings can be anything i have just used the alphabet as an example)
I hope this makes sense!
2 Comments
Walter Roberson
on 11 May 2012
Duplicate is at http://www.mathworks.com/matlabcentral/answers/38113-plot-help
Answers (1)
the cyclist
on 11 May 2012
Can you just use cell arrays?
total = {'a','b'}
Here's an overview:
2 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!