Removing space between images in subplot

Hi I am plotting multiple images on a figure using subplot. The problem is that there is an empty area present between images. I dont want this space to be there.
Can anyone please help me how to remove this unnecessary space between figures.
Regards

 채택된 답변

Ghulam
Ghulam 2018년 2월 26일

2 개 추천

| I found the solution of my problem, I am sharing with all of you here.
|
a = subplot(3,3,2); imshow('corn.png')
b = subplot(3,3,4); imshow('corn.png');
c = subplot(3,3,5); imshow('corn.png');
d = subplot(3,3,6); imshow('corn.png');
e = subplot(3,3,7); imshow('corn.png');
f = subplot(3,3,8); imshow('corn.png');
g = subplot(3,3,9); imshow('corn.png');
set(a, 'Position', [0.3 0.6 .3 .3]);
set(b, 'Position', [0 0.3 0.3 0.3]);
set(c,'Position',[0.3 0.3 0.3 0.3]);
set(d,'Position',[0.6 0.3 0.3 0.3]);
set(e,'Position',[0 0 0.3 0.3]);
set(f,'Position',[.3 0 .3 .3]);
set(g,'Position',[0.6 0 .3 .3]);

댓글 수: 1

Hi, Can you tell me what the parameters of Position are?
i.e what does [0.3 0.6 0.3 0.3] represent?

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Ghulam
Ghulam 2018년 2월 26일

0 개 추천

Can anyone please answer this?

카테고리

태그

질문:

2018년 2월 15일

댓글:

2022년 5월 12일

Community Treasure Hunt

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

Start Hunting!