Removing space between images in subplot

9 visualizaciones (últimos 30 días)
Ghulam
Ghulam el 15 de Feb. de 2018
Comentada: RAGHAVENDRA NAIK el 12 de Mayo de 2022
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

Respuesta aceptada

Ghulam
Ghulam el 26 de Feb. de 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 comentario
meghna roy chowdhury
meghna roy chowdhury el 18 de Abr. de 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?

Iniciar sesión para comentar.

Más respuestas (1)

Ghulam
Ghulam el 26 de Feb. de 2018
Can anyone please answer this?

Etiquetas

Community Treasure Hunt

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

Start Hunting!