I want to display 46 chromosomes images on single axes in matlab gui.. Can anyone help please?
Info
This question is closed. Reopen it to edit or answer.
Show older comments
Answers (1)
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
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!