MATLAB: Error in bit shifting operation

MATLABmatrixmatrix manipulation

a=[1 0 0 0 0 0 1 0 1]
i want to shift these bits according to my requirement
like i want them to shift left side two bits
b=[0 0 0 0 1 0 1 1 0]

Best Answer

circshift(a,[0 -2])