Extracting data from matlab struct
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuesta aceptada
Walter Roberson
el 18 de Nov. de 2012
[A.br]
2 comentarios
Walter Roberson
el 18 de Nov. de 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 .
Más respuestas (0)
Ver también
Categorías
Más información sobre Structures en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!