MATLAB: Array shifting problem, help

array shift

hi, l am new at matlab, probably the question is stupid.
l have an array like
[6 5 4 3 0 1 2 4 0 0 0]
l want to shift this array left but the result must be
[5 4 3 0 1 2 4 0 0 0 0]
l dont want to it be circular shifted.
thank you

Best Answer

V = [6 5 4 3 0 1 2 4 0 0 0]
V = [V(2:end-1) 0]