Как объединить эти сюжеты на одном изображении в Matlab? - PullRequest
0 голосов
/ 01 ноября 2019

Как объединить эти участки на одном изображении в Matlab?

V1img = wcodemat(V1,255,'mat',1);
H1img = wcodemat(H1,255,'mat',1);
D1img = wcodemat(D1,255,'mat',1);
A1img = wcodemat(A1,255,'mat',1);
subplot(4,1,1)
imagesc(A1img)
colormap pink(255)
subplot(4,1,2)
imagesc(H1img)
subplot(4,1,3)
imagesc(V1img)
subplot(4,1,4)
imagesc(D1img)

How to concatenate these subplots on one image in matlab?

...