assign a cell array to first row of another cell array

how we can assign a cell array as first row of another cell array in loop and how we can acces the data?
Thanks

回答 (1 件)

per isakson
per isakson 2013 年 6 月 29 日
編集済み: per isakson 2013 年 6 月 29 日

0 投票

Try this:
another_cell_array = cell( 3, 1 );
my_cell_array = {'my','cell','array'};
another_cell_array{1,1} = my_cell_array;
ca1 = another_cell_array{1,1}
str = another_cell_array{1,1}{1,2}
returns
ca1 =
'my' 'cell' 'array'
str =
cell
.
"in loop" how do you mean?

カテゴリ

ヘルプ センター および File ExchangeMatrix Indexing についてさらに検索

質問済み:

2013 年 6 月 28 日

Community Treasure Hunt

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

Start Hunting!

Translated by