How do I name individual cells from a cell

1 回表示 (過去 30 日間)
fernando aguirre
fernando aguirre 2018 年 5 月 30 日
コメント済み: fernando aguirre 2018 年 5 月 31 日
I'm creating a .mat file with some parameters (angle = array and transmission = cell 1x9 with 12000x20 individual cells). How do I name and save each 12000x20 cell with the name "generic" + individual component of the array "angle". Note that cells in "transmission" were calculated based off the order of angle, so order should already be matched up. Necessary for calculations based off another function.
  4 件のコメント
Stephen23
Stephen23 2018 年 5 月 31 日
"How do I name and save each 12000x20 cell with the name "generic" + individual component of the array "angle""
Don't do this. Using indexing is much simpler, most efficient, and easier to debug.
"Note that cells in "transmission" were calculated based off the order of angle, so order should already be matched up"
That is exactly what indexing does: keeps things in a particular order. So easy with indexing!
fernando aguirre
fernando aguirre 2018 年 5 月 31 日
Thank you, I'll look into indexing.

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

採用された回答

Jan
Jan 2018 年 5 月 30 日
編集済み: Jan 2018 年 5 月 30 日
A bold guess: You want to use a struct?
Note that creating 12000x20 different variables or fields of a struct would be extremely inefficient and very ugly. You would have to hide an index in the names of the fields, and this is a bad idea. See Tutorial: Avoid the dynamic creation of variables.
  3 件のコメント
Jan
Jan 2018 年 5 月 30 日
I assume, that using an array is much more efficient and cleaner, than a huge struct with magically numbered field names. I simply refuse to post code to produce 240'000 field names, although this is very easy using sprintf and "dynamic fieldnames" (use these terms to search in the forum). I'm too convinced, that this method will be a shot in your knee and I'm not willing to hut you.
I suggest to explain the actual problem with more details to get a better strategy than a huge struct array. Currently the explanations of what you want to do are not clear enough to be understood.
fernando aguirre
fernando aguirre 2018 年 5 月 31 日
It's really only 20 field names, but fair enough. Thank you for your help!

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

その他の回答 (0 件)

カテゴリ

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

Translated by