Display images in Gui axes

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

 Accepted Answer

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

1 Comment

Thank you. Even though I solved it a few minutes ago, your solution is simple and clever. Thanks!

Sign in to comment.

More Answers (0)

Asked:

on 6 May 2013

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!