How can I do loop for struct data?
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
I have a data set that consist of a structure , example: data (1x10 struct with 1 field) How can I do loop to read all these data? I want to be able to do a calculation on a specific measurements of each field. Thanks
Réponses (2)
Azzi Abdelmalek
le 18 Avr 2016
a=struct('f',num2cell(1:10))
out=[a.f]
6 commentaires
Riyadh Muttaleb
le 18 Avr 2016
Modifié(e) : Riyadh Muttaleb
le 18 Avr 2016
Azzi Abdelmalek
le 18 Avr 2016
Post an example
Azzi Abdelmalek
le 18 Avr 2016
v=num2cell(rand(4))
a=struct('f',v)
%-------------------------
out=reshape([a.f],size(a))
Riyadh Muttaleb
le 20 Avr 2016
Azzi Abdelmalek
le 20 Avr 2016
suppose you have this matrix
A=[1 2;3 4;5 6]
What operation you want to apply?
Riyadh Muttaleb
le 21 Avr 2016
Walter Roberson
le 19 Avr 2016
Example:
arrayfun(@(IDX) mean(YourStructArray(IDX).TheField(:)), 1:numel(YourStructArray))
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!