标签: matlab tensor
我有一个4D张量X(35 * 35 * 4 * 5),5是样本数,我想使用逻辑索引向量Ind=[1; 1; 0; 0; 1]提取两个fisrt样本和最后一个样本>
Ind=[1; 1; 0; 0; 1]
我尝试使用此指令X(:,:,:,Ind),但返回错误Size of data does not match specified size of tensor
X(:,:,:,Ind)
Size of data does not match specified size of tensor
答案 0 :(得分:0)
它可以工作,但是不是逻辑索引:
X(:,:,:,[true true false false true])