How to change a matrix's size from 10000x40x40 to 10000x40x40x1

답변 (1개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2020년 12월 14일
편집: KALYAN ACHARJYA 2020년 12월 14일

0 개 추천

data=rand(10000,40,40);
result=reshape(data,[10000,40,40,1]);
Is there any sense? data (10000,40,40) might considering same for (10000,40,40,1). There might be no difference to implement 1 more dimemtion, which olready have in space vector,
e.g.
>> data=rand(3,3);
>> data(2,3,1,1)
ans =
0.7719

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

질문:

2020년 12월 14일

편집:

2020년 12월 14일

Community Treasure Hunt

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

Start Hunting!

Translated by