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?
vector(indecies) = []
example:
>> a = 1:10; >> a([3,4,7]) = [] a = 1 2 5 6 8 9 10
2.1m questions
2.1m answers
60 comments
57.0k users