Effacer les filtres
Effacer les filtres

split struct based on description

4 vues (au cours des 30 derniers jours)
Alberto Acri
Alberto Acri le 15 Juin 2023
Modifié(e) : Stephen23 le 15 Juin 2023
Hi. How do you subdivide the struct into multiple structs as shown in the figure?

Réponse acceptée

Stephen23
Stephen23 le 15 Juin 2023
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 commentaires
Alberto Acri
Alberto Acri le 15 Juin 2023
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 le 15 Juin 2023
Modifié(e) : Stephen23 le 15 Juin 2023
"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:

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by