error in bit shifting operation

2 views (last 30 days)
Raza Ali
Raza Ali on 26 Feb 2014
Commented: Raza Ali on 26 Feb 2014
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]

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 26 Feb 2014
circshift(a,[0 -2])
  1 Comment
Raza Ali
Raza Ali on 26 Feb 2014
i have
a= [0 0 1 0 1 0 1 1]
i want this convert it in decimal value 43

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!