2011-04-11 6 views

답변

1

당신은 cell arrays 사용할 수 있습니다

images = cell(100,1); 
% ... f.e. in a for loop: 
images{i} = rand(100,200); 
% to query the image (2D array) again: 
myImage = images{n}; 
관련 문제