How to filter a cell array filled with strings?

조회 수: 5 (최근 30일)
Maximilian Stopfer
Maximilian Stopfer 2019년 12월 4일
편집: Stephen23 2024년 4월 12일
Dear all,
I have a dataset with 576 cells [1x576] and all cells contain strings [1x1 struct]. These strings contain two colums (field, value), e. g.:
A01 = struct('a',1,'b',2,'c',0)
A02 = struct('a',0,'b',2,'c',1)
A03 = struct('a',2,'b',2,'c',0)
A04 = struct('a',0,'b',1,'c',1)
A05 = struct('a',1,'b',0,'c',2)
A = {A01,A02,A03,A04,A05}
How can I filter all cells with a specific field name and extract them (as example: how can I filter all structs with a=1 and save the b values in new array)?
Sincerely yours, Max
  댓글 수: 1
Stephen23
Stephen23 2024년 4월 12일
편집: Stephen23 2024년 4월 12일
Storing lots of scalar structures in a cell array is inefficient data design, which leads to inefficient code.
Assuming that all of the scalar structures have the samew fields (as your example shows), then much better data design would be to use one non-scalar structure array:
A = struct('a',{1,0,2,0,1},'b',{2,2,2,1,0},'c',{0,1,0,1,2})
A = 1x5 struct array with fields:
a b c
This has more efficient memory and access, as well as offering some convenient syntaxes for accessing the data:

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

채택된 답변

Adam Danz
Adam Danz 2019년 12월 4일
편집: Adam Danz 2019년 12월 6일
This will return a logical array the same size as 'A' where TRUE values indicate elements of A that meet the following requirements:
  • A{i} is a structure
  • A{i} contains a field named 'a'
  • The value of field 'a' is equal to 1
keyField = 'a';
keyValue = 1;
idx = cellfun(@(s)isstruct(s) && any(strcmp(fieldnames(s),keyField)) && isequal(s.(keyField),keyValue), A)
To filter those structures from the cell array A,
A(idx)

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by