Extracting data from matlab struct
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a data structure vector "A" = <1x24struct> that is 24sets long of these variable six fields:
br: 38.6890
br1: 234.2153
br2: 38.3359
br3: 232.9991
br4: 733857
date: 733976
How do I extract all the br values into one 1x24 vector?
I've used A.br(1:24) but can't work,
Thank you in advance for your help
0 commentaires
Réponse acceptée
Walter Roberson
le 18 Nov 2012
[A.br]
2 commentaires
Walter Roberson
le 18 Nov 2012
hortzcat(A.br)
provided that each br field is a row vector and that they are all the same length.
Note that this will not give you the 1x24 vector you asked for in the case when br has scalars: it would give you a 24x1 vector. Your requirements are contradictory, 1x24 vs 24xn .
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Structures dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!