标签: arrays matlab matrix matrix-indexing
我有一个包含100个元素的向量。我有另一个向量,其中包含我想从此向量中删除的元素的索引位置。
我该怎么做?
答案 0 :(得分:41)
vector(indecies) = []
示例:
>> a = 1:10; >> a([3,4,7]) = [] a = 1 2 5 6 8 9 10