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

采纳的回答

Walter Roberson
Walter Roberson 2012-11-18
  2 个评论
Walter Roberson
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 CenterFile Exchange 中查找有关 Structures 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by