Removing space between images in subplot

9 views (last 30 days)
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

Accepted Answer

Ghulam
Ghulam on 26 Feb 2018
| 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 Comment
meghna roy chowdhury
meghna roy chowdhury on 18 Apr 2021
Hi, Can you tell me what the parameters of Position are?
i.e what does [0.3 0.6 0.3 0.3] represent?

Sign in to comment.

More Answers (1)

Ghulam
Ghulam on 26 Feb 2018
Can anyone please answer this?

Community Treasure Hunt

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

Start Hunting!