how to change the bit of any matrix?

2 views (last 30 days)
A=[12 32 ;23 14];
>> D=A(:)';
>> S=de2bi(D);
>> S=de2bi(D)
S =
0 0 1 1 0 0
1 1 1 0 1 0
0 0 0 0 0 1
0 1 1 1 0 0
>> i want to make its 4th bit zero.. so what will i do?

Accepted Answer

Jan
Jan on 1 Jul 2019
Edited: Jan on 1 Jul 2019
A = [12, 23, 32, 14];
B = bitset(A, 4, 0)
Or:
S = de2bi(A);
S(:, 4) = 0;

More Answers (1)

Shameer Parmar
Shameer Parmar on 1 Jul 2019
try with this..
S(:,4) = 0

Community Treasure Hunt

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

Start Hunting!