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};
  2 件のコメント
Matt J
Matt J 2020 年 7 月 8 日
You're quite welcome, but please Accept-click the answer to signify that your question is resolved.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by