Effacer les filtres
Effacer les filtres

assign a cell array to first row of another cell array

3 vues (au cours des 30 derniers jours)
saharsahar
saharsahar le 28 Juin 2013
how we can assign a cell array as first row of another cell array in loop and how we can acces the data?
Thanks

Réponses (1)

per isakson
per isakson le 29 Juin 2013
Modifié(e) : per isakson le 29 Juin 2013
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?

Catégories

En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by