views:

60

answers:

1

I have a vector with 100 elements. I have another vector with index positions of elements I want to remove from this vector.

How do I do this?

+5  A: 
vector(indecies) = []

example:

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

a =

     1     2     5     6     8     9    10
second