Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
How can I do loop for struct data?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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
0 comentarios
Respuestas (2)
Azzi Abdelmalek
el 18 de Abr. de 2016
a=struct('f',num2cell(1:10))
out=[a.f]
6 comentarios
Azzi Abdelmalek
el 20 de Abr. de 2016
suppose you have this matrix
A=[1 2;3 4;5 6]
What operation you want to apply?
Walter Roberson
el 19 de Abr. de 2016
Example:
arrayfun(@(IDX) mean(YourStructArray(IDX).TheField(:)), 1:numel(YourStructArray))
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!