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

2 次查看(过去 30 天)
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

采纳的回答

Matt J
Matt J 2020-7-8
编辑:Matt J 2020-7-8
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};

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by