You can make use of inbuilt app 'imview' that comes with Image Processing Toolbox. Check the following documentation and try the given examples:
When you are trying the example:
load cellsequence
implay(cellsequence,10);
Notice that load function loads a 'cellsequence' variable into MATLAB workspace which is of size: 480*640*10. Hence it contains 10 images. Combine your images into one variable like 'cellsequence' and use 'implay'.
Hope this helps!