How to split/reduce dimension of a variable

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.

 Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 31 Juil 2019
Modifié(e) : KALYAN ACHARJYA le 31 Juil 2019
Lets var is the main variable-
var1=var(:,:,1,:);
var2=var(:,:,2,:);

4 commentaires

But this leaves me with a 40 x 40 x 1 x 102400 , how do i remove that 1.
should i use
squeeze(var1)
madhan ravi
madhan ravi le 31 Juil 2019
Yes.
KALYAN ACHARJYA
KALYAN ACHARJYA le 31 Juil 2019
Thanks @Madhan
Olca Orakci
Olca Orakci le 31 Juil 2019
Thank you both :)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

Produits

Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by