How to split/reduce dimension of a variable

12 views (last 30 days)
Hello,
I have a variable of size 40 x 40 x 2 x 102400 and i want to seperate this variable to two 40 x 40 x 102400 variables. I plan to use the data on python, but have problems with the size and dimensions of the data. I don't know if this is an easy or a complex problem but i am new to matlab and couldn't find how to do this.

Accepted Answer

KALYAN ACHARJYA
KALYAN ACHARJYA on 31 Jul 2019
Edited: KALYAN ACHARJYA on 31 Jul 2019
Lets var is the main variable-
var1=var(:,:,1,:);
var2=var(:,:,2,:);
  4 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!