Extracting data from matlab struct
3 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Walter Roberson
2012-11-18
[A.br]
2 个评论
Walter Roberson
2012-11-18
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 .
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!