accessing multiple individual struct field values

2 visualizzazioni (ultimi 30 giorni)
Darren Reed
Darren Reed il 20 Mag 2021
Modificato: per isakson il 21 Mag 2021
I have made a structure like so;
xfr = struct('name',[],'sn',zeros(tmp,1),'xs',zeros(tmp,1),'f',[],'amp',[],'unphas',[],'lincoh',[]);
and filled the fields amp,unphas, and lincoh with 4 double values. xfr is 1x15. I need to make a scatter plot of one field vs the first value of unphas [unphas(1)]
I can easily extract all of the xs values: xfr.xs
How can I extract the first (or second, third, or fourth) value of unphas for all xfr ?
I have tried many different ways without success
a = [xfr(1:15).unphas(4)]
Expected one output from a curly brace or dot indexing
expression, but there were 15 results.

Risposte (1)

Stephen23
Stephen23 il 20 Mag 2021
Modificato: Stephen23 il 20 Mag 2021
S(1).data = [1;2;3];
S(2).data = [4;5;6];
S(3).data = [7;8;9];
n = 2;
V = arrayfun(@(s)s.data(n),S)
V = 1×3
2 5 8
or (assuming that each field contains a column vector):
M = [S.data];
V = M(2,:)
V = 1×3
2 5 8
  2 Commenti
Darren Reed
Darren Reed il 20 Mag 2021
I don't think I have column vectors in the structure xfr.unphas
The data is put into the structure within a double loop as this:
xfr(i).unphas(j) = unphas(mxi+ids(j,1));
Is there any other way to put the data into the xfr.unphas field to make it a column vector?
Thanks
Stephen23
Stephen23 il 21 Mag 2021
The arrayfun approach does not assume anything about the orientation or size of the array. Try that first.

Accedi per commentare.

Categorie

Scopri di più su Structures in Help Center e File Exchange

Prodotti


Release

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by