Changing size (3D to 4D)

2 views (last 30 days)
Cinar Gulleroglu
Cinar Gulleroglu on 14 Dec 2020
Edited: KALYAN ACHARJYA on 14 Dec 2020
How to change a matrix's size from 10000x40x40 to 10000x40x40x1

Answers (1)

KALYAN ACHARJYA
KALYAN ACHARJYA on 14 Dec 2020
Edited: KALYAN ACHARJYA on 14 Dec 2020
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

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!