如何在MATLAB中的向量中删除一组索引处的元素?

时间:2010-09-24 18:18:06

标签: arrays matlab matrix matrix-indexing

我有一个包含100个元素的向量。我有另一个向量,其中包含我想从此向量中删除的元素的索引位置。

我该怎么做?

1 个答案:

答案 0 :(得分:41)

vector(indecies) = []

示例:

>> a = 1:10;
>> a([3,4,7]) = []

a =

     1     2     5     6     8     9    10