2011-04-11 84 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}; 
相关问题