필터 지우기
필터 지우기

split struct based on description

조회 수: 4 (최근 30일)
Alberto Acri
Alberto Acri 2023년 6월 15일
편집: Stephen23 2023년 6월 15일
Hi. How do you subdivide the struct into multiple structs as shown in the figure?

채택된 답변

Stephen23
Stephen23 2023년 6월 15일
C = {S.SeriesDescription};
S_scout = S(strcmpi(C,'Scout'))
S_serie = S(strcmpi(C,'Serie'))
S_stand = S(strcmpi(C,'Standard'))
If you want to do it "automatically" for multiple different strings:
Note that splitting up data is rarely a good approach to processing data. Usually keeping data together makes it easier to process.
  댓글 수: 2
Alberto Acri
Alberto Acri 2023년 6월 15일
How can I do it if I want to directly use the names in the cell and create the substructures simultaneously?
C = {S.SeriesDescription};
myCell = {'Scout'; 'Serie'; 'Standard'};
K=1;
name_1 = myCell{K,1};
S_1 = S(strcmpi(C,name_1));
Stephen23
Stephen23 2023년 6월 15일
편집: Stephen23 2023년 6월 15일
"How can I do it if I want to directly use the names in the cell and create the substructures simultaneously?"
If you really want to force yourself into writing slow, complex, inefficient, obfuscated, buggy code that is harder to debug, you can find plenty of examples linked here:

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by