MATLAB: How to shift a vector numerically to the right (or the left) by adding zeros to the side of the array

array extensionvector shift

Supposing I have a vector x=[1 2 3] and I need it to shift it to the right of two integers how can i generate a new vector x1=[0 0 1 2 3]

Best Answer

x1=[zeros(1,2),x]
Related Question