To create cells with different names in a loop
Show older comments
I have defined a cell array as follows:
names = {'joe', 'enna', 'fin'};
now in a loop I want to create empty cell arrays whose names should be 'joe' , 'enna', 'fin' respectively, instead of manually creating like follows:
joe = cell(zeros); enna = cell(zeros);fin = cell(zeros);
I have to make 50 such cell arrays in loop.
Please help how to do ?
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 25 May 2013
names = {'joe', 'enna', 'fin'};
for k=1:numel(names)
eval([names{k} '=cell(5)'])
end
Creating different names is not recommended. You can create one cell array containing other cell array
5 Comments
Priya
on 25 May 2013
Image Analyst
on 25 May 2013
ca = {names}
but why would you want to do that?
Azzi Abdelmalek
on 25 May 2013
Example
A={{1 2 3;4 5 6} {10 20 30} {5}}
A{1} % your first cell array
A{2} % your second cell array
% and so on
Priya
on 25 May 2013
Image Analyst
on 25 May 2013
Priya, the best way would be to have a cell array, not a single cell, but a whole array of cells. The row in the array would represent the dataset (1 through 790) and the column would be the data for that data set (the various numbers and strings associated with that dataset). See the FAQ for a good description of cells: http://matlab.wikia.com/wiki/FAQ#What_is_a_cell_array.3F
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!