필터 지우기
필터 지우기

Accessing elements of lists within lists

조회 수: 49 (최근 30일)
Aleem Andrew
Aleem Andrew 2020년 10월 8일
댓글: Stephen23 2020년 10월 9일
I have created a list which contains several lists in the following code.
a = [{'poh',3,4},{'v',5}]
a=[{'poh',3,4},{'v',5}]
a =
1×5 cell array
{'poh'} {[3]} {[4]} {'v'} {[5]}
Matlab interprets the elements as cells, but they should be treated as strings or integers/floats. Also, I want a(1) to equal {'poh',3,4} not 'poh' so elements within the sublist can be accessed by referencing it, for example, a(1)(2) = 3. Does anyone have suggestions regarding how this can be done?
  댓글 수: 2
Walter Roberson
Walter Roberson 2020년 10월 9일
Matlab interprets the elements as cells, but they should be treated as strings or integers/floats.
You are being confused by the display format that MATLAB uses to emphasize that you are dealing with a cell.
1×5 cell array
{'poh'} {[3]} {[4]} {'v'} {[5]}
is saying that a(1) is {'pho'}, which is correct: when you use () indexing on a cell array, you get back a cell array rather than the contents.
There were a lot of releases in the past where it would have presented the output as
'pho' [3] [4] 'v' [5]
which is just a choice of formatting.
The display is not telling you that a{1} is {'pho'} but rather that a(1) is {'pho'}
Stephen23
Stephen23 2020년 10월 9일
"I have created a list which contains several lists ..."
MATLAB does not have "list" class. What you show is one single cell array formed by concatenating two cell arrays together (because the square brackets [] are a concatenation operator, not a "list" operator (which does not exist)).

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

채택된 답변

Mohammad Sami
Mohammad Sami 2020년 10월 9일
In Matlab cell arrays are the only type that can store heterogeneous data.
Just change the outside [] to {} if you want to have nested cell arrays.
a={{'poh',3,4},{'v',5}}
a{1}{2}
  댓글 수: 2
Aleem Andrew
Aleem Andrew 2020년 10월 9일
편집: Aleem Andrew 2020년 10월 9일
Thanks for your answer Is there a way to perform operations on the elements or compare their values, for example, to add element 2 to element 3 by typing something like a{1}{2}+a{1}{3} which should output the integer/double 7? And a{1}{1} == '0' should equal false?
Mohammad Sami
Mohammad Sami 2020년 10월 9일
Yes that will work, assuming the data is of the same type.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by