I don't quite understand what line 5 of the following code is doing. First 4 lines are importing the image from the folder and then storing it in "image1". Then on line 5 i dont get what is being done.
numFolder=fullfile('NumberZero/','Zero/');
for i=1:10;
    numName=sprintf('%d.bmp',i);
    image1=imread([numFolder, numName]);
    im1(:,:,i)=image1; % what is this line doing?
end
 
     
    