How can concatenate matrices with dimension expansion.

조회 수: 1 (최근 30일)
Song Juhong
Song Juhong 2021년 4월 19일
편집: Matt J 2021년 4월 19일
img1 = imread('0.png');
img2 = imread('1.png');
size(img1); % (25, 25)
size(img2); % (25, 25)
I want to make 'img' with its dimension (2, 25, 25)
How can I do it?

답변 (2개)

David Hill
David Hill 2021년 4월 19일
Why not 25x25x2?
img(:,:,1) = imread('0.png');
img(:,:,2) = imread('1.png');

Matt J
Matt J 2021년 4월 19일
편집: Matt J 2021년 4월 19일
permute( cat(3,img1,im2), [3,1,2]);

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by