Referencing String in an array?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi guys, I am currently having the following problem
I want to create an array say:
A = ['Apple', 'Oranges']
And I want to access the array by the index of the items:
A(1) = Apple
A(2) = Oranges
But current, A(1) is only giving me a, A(2) is giving me p, so on
How do I access these items by their indices?
댓글 수: 1
Azzi Abdelmalek
2013년 9월 29일
Bo commented
Thanks guys, been out of the matlab game for over a year and I can't remember anything! I even tried to use a struct but matlab struct is kind of crazy also.
답변 (2개)
Azzi Abdelmalek
2013년 9월 29일
Use a cell array
A = {'Apple', 'Oranges'}
A{1}
A{2}
댓글 수: 1
Azzi Abdelmalek
2013년 9월 29일
편집: Azzi Abdelmalek
2013년 9월 29일
Bo, this is not struct it's a cell array. When you work with different type of data, you can not avoid cell array
doc cell
Wayne King
2013년 9월 29일
편집: Wayne King
2013년 9월 29일
Why not use a cell array?
A = {'Apple', 'Oranges'};
Then
A{1}
and
A{2}
will give you what you want.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Cell Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!