i have a data of 1152*3*140 trials(where 1152 is no of sample points , 3 is no of channels ,140 is no of trials) of two classes of elements , i need to separate each class indivdually for particular trials of each channel ? like 1152*1*no of trials
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
arunnagiri murrugesan
le 13 Sep 2018
Commenté : arunnagiri murrugesan
le 16 Sep 2018
please provide code for separating each class.
0 commentaires
Réponse acceptée
ANKUR KUMAR
le 14 Sep 2018
A=rand(1152,3,140);
AA=arrayfun(@(x) squeeze(A(:,x,:)),1:size(A,2),'uni',0);
AA splits A into three parts, each of dimension 1152*140.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Structures dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!