Removing space between images in subplot

14 vues (au cours des 30 derniers jours)
Ghulam
Ghulam le 15 Fév 2018
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

Réponse acceptée

Ghulam
Ghulam le 26 Fév 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 commentaire
meghna roy chowdhury
meghna roy chowdhury le 18 Avr 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?

Connectez-vous pour commenter.

Plus de réponses (1)

Ghulam
Ghulam le 26 Fév 2018
Can anyone please answer this?
  1 commentaire
RAGHAVENDRA NAIK
RAGHAVENDRA NAIK le 12 Mai 2022
[left margin,bottom margin,width,height]

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!