Question: Delete a component of a vector

I need to delete certain components of a vector, I know if it was a matrix I could use DeleteRow and DeleteColumn but it does not work for a vector, how can I do that?

e.g.

A:=<2,10,5,7>;

n:=2 (delete second component) ??

A:=<2,5,7>

 

Please Wait...