Remove values from a vector at defined indexes.
[V] = NL_F_RemoveVecIndexes(V,I)
Vector.
Vector of indexes.
NL_F_RemoveVecIndexes removes the values stored at the indexes I of the vector V.
v=1:10;//vector //[1 2 3 4 5 6 7 8 9 10] vi=[1 3 4 6 10];//indexes [vv]=NL_F_RemoveVecIndexes(v,vi)//application of NL_F_RemoveVecIndexes