Info

This question is closed. Reopen it to edit or answer.

I want to display 46 chromosomes images on single axes in matlab gui.. Can anyone help please?

1 view (last 30 days)
Matlab Gui

Answers (1)

Youssef  Khmou
Youssef Khmou on 22 Oct 2013
46 samples in one line will not be efficient , i propose to store all your images in one matrix, lets M and divide them into 6x8 :
figure,
for n=1:46
subplot(6,8,n)
imshow(M(:,:,n));
end

Community Treasure Hunt

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

Start Hunting!