How can I create a 3D array?

조회 수: 1 (최근 30일)
Matthew Worker
Matthew Worker 2020년 12월 28일
편집: JC 2020년 12월 30일
for i=1:n-1
Image2 = uigetfile('*p*');
ImageArray2 =imread(Image2);
MDArray = cat(3,ImageArray,[ImageArray2]);
end
I need to add more images onto the third dimension but I am unsure how to do this. Can anyone help with any tips/suggestions?

채택된 답변

Steve Eddins
Steve Eddins 2020년 12월 28일
Try something like this:
for i = 1:n-1
next_image = uigetfile('*p*');
ImageArray = cat(3,ImageArray,next_image);
end
When this loop finishes, the variable ImageArray is your multidimensional array.

추가 답변 (0개)

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by