how to plot 3 image in parallel

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

답변 (1개)

Vishal Gaur
Vishal Gaur 2020년 6월 12일
편집: Vishal Gaur 2020년 6월 12일

0 개 추천

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.

카테고리

제품

릴리스

R2020a

질문:

2020년 6월 12일

편집:

2020년 6월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by