Convert matrix from 3d to 4d?

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

Where M is your array:
N = permute(M,[1,2,4,3])

More Answers (0)

Categories

Asked:

M
M
on 29 Nov 2023

Answered:

on 29 Nov 2023

Community Treasure Hunt

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

Start Hunting!