Convert matrix from 3d to 4d?

4 views (last 30 days)
M
M on 29 Nov 2023
Answered: Stephen23 on 29 Nov 2023
How to convert a matrix from size 120*120*20000 to 120*120*1*20000? so I can use this data in CNN because I cant use it in the current form

Accepted Answer

Stephen23
Stephen23 on 29 Nov 2023
Where M is your array:
N = permute(M,[1,2,4,3])

More Answers (0)

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!