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 次查看(过去 30 天)
显示 更早的评论
please provide code for separating each class.
0 个评论
采纳的回答
ANKUR KUMAR
2018-9-14
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.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!