convert array dimensions 12 channels

1 view (last 30 days)
I have file with 50 rows and 12 columns [50 x 12] , how can i convert this file to [50 x 1 x 12] where 12 it is like channels in an image, for example for rgb images would be [50 x 20 x 3] in my case I wanted to be 12 channels
thanks for your help

Accepted Answer

KALYAN ACHARJYA
KALYAN ACHARJYA on 19 Jan 2021
reshape(data,[50,1,12])
  1 Comment
Mauricio Piraquive
Mauricio Piraquive on 19 Jan 2021
Thanks, and then how can I save this rtesult into a .mat file?

Sign in to comment.

More Answers (0)

Categories

Find more on Data Types 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!