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

답변 (1개)

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

이 질문은 마감되었습니다.

질문:

2013년 10월 22일

마감:

2021년 8월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by