Removing space between images in subplot

11 次查看(过去 30 天)
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
| 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 个评论
meghna roy chowdhury
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
Can anyone please answer this?

类别

Help CenterFile Exchange 中查找有关 Subplots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!