string problem

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

Walter Roberson
Walter Roberson 2012년 5월 11일
http://www.mathworks.com/matlabcentral/answers/29922-why-your-question-is-not-urgent-or-an-emergency
Walter Roberson
Walter Roberson 2012년 5월 11일
Duplicate is at http://www.mathworks.com/matlabcentral/answers/38113-plot-help

댓글을 달려면 로그인하십시오.

답변 (1개)

the cyclist
the cyclist 2012년 5월 11일

0 개 추천

Can you just use cell arrays?
total = {'a','b'}
Here's an overview:

댓글 수: 2

Edward
Edward 2012년 5월 11일
i could but that wouldn't allow me to add a different amount of strings into the array each time.
The amount of strings i need in the array is defined by the user.
Im hoping to use it to label a plot legend with n variables.
Walter Roberson
Walter Roberson 2012년 5월 11일
See your other question that this one duplicates.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Characters and Strings에 대해 자세히 알아보기

질문:

2012년 5월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by