MATLAB: Display images in Gui axes

axesguistring

Hello, I am relatively a new matlab user and a programmer generally. I have created a GUI and I want to display the results of the program on the gui. The results are images, which come from a table Image(i). I added 20 axes on my gui to print the 20 first images of this table. The axes are called im1,im2…im20. How could I do a for loop to display each image on each axes respectively? Is it possible to handle the string im1, so it will be like imi and every time i increases it will become im1,im2 etc.? Thanks in advance

Best Answer

Summary: Don't do this. Use an index instead like im(1), im(2), .... Then using a loop is trivial.