How to create a cell array with the content of a component of a structure?

1 visualización (últimos 30 días)
I have a structure called sFiles and I want to put the information that is inside sFiles.FileName inside a cell array called your cell,
I have this code:
for i=1:1:length(sFiles)
yourcell={sFiles(i).FileName};
end
Does anybody know why is not working?
Thanks

Respuesta aceptada

Matt J
Matt J el 8 de Jul. de 2020
Editada: Matt J el 8 de Jul. de 2020
It is not working because in your for-loop, yourcell is never indexed by the loop variable i, so the loop code has no idea where within yourcell you want to put things.
A for-loop is, in any case, unnecessary. The whole task can be done in a single command as follows:
yourcell={sFiles.FileName};

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by