How can I put data into a Cell
古いコメントを表示
I have a cell Name = {} And i need to make a list of names using a loop. How do I do this without overwriting ? Thanks
回答 (2 件)
for n = 1:numNames
Name{n} = getYourNameFromSomewhere( n );
end
Doing it in a loop implies your names are somewhere where you can assign them without needing to hard code them. Whether that is the case or not I don't know so the above is kind of pseudo-code
Anne
2017 年 3 月 23 日
0 投票
1 件のコメント
Adam
2017 年 3 月 23 日
Well, it depends entirely on how you get hold of all your names in a loop. Using Jan's code to initialise the array that is what you will start with. If your code in the for loop fails to assign anything then you will end up with that still too.
カテゴリ
ヘルプ センター および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!