how to plot 3 image in parallel

32 Ansichten (letzte 30 Tage)
aqilah jalil
aqilah jalil am 12 Jun. 2020
Bearbeitet: Vishal Gaur am 12 Jun. 2020
subplot(2,1,1)
imshow(img1)
subplot(2,1,2)
imshow(img2)
i know this can produce 2 image in parallel how can i do 3 image like | img1| img2 | img3

Antworten (1)

Vishal Gaur
Vishal Gaur am 12 Jun. 2020
Bearbeitet: Vishal Gaur am 12 Jun. 2020
Let me clarify, how subplot function works. Subplot(m,n,p) divides the current figure into mXn grids and creates axes in the position specified by p. For example:
subplot(3,2,3)
It will divide the current figure into 3X2 grid and plot the specified image or plot to the 3rd position or grid 2,1. MATLAB numbers position by row.
So, if you want to plot three images you can divide the figure in 1X3 grids or 3X1 grids. Code for 1X3 grid is given below.
subplot(1,3,1)
imshow(img1)
subplot(1,3,2)
imshow(img2)
subplot(1,3,3)
imshow(img3)
For more information, you can check the documentation.

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by