我想索引矩阵
x=[1:5;6:10]
x =
1 2 3 4 5 6 7 8 9 10
使用数组
[1,2,1,2,1]
要得到
1 7 3 9 5
我试过这个:
x([1,2,1,2,1],:) ans = 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5
但这不是我想要的.请帮忙
我会用线性索引有sub2ind:
sub2ind
>> v = x(sub2ind(size(x),a,1:5)) v = 1 7 3 9 5