MATLAB: Extracting data from matlab struct

struct

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 1×24 vector?
I've used A.br(1:24) but can't work,
Thank you in advance for your help

Best Answer

[A.br]
Related Question