Edit:Replacing 5 bits in Binary value
1 view (last 30 days)
Show older comments
I have values
say A=[1056;1078]
B=[31;25];
i tried using
for i=1:2 C(n:n+numel(D)-1)=D; end
but not getting the answer,please assist
1 Comment
Accepted Answer
Andrei Bobrov
on 22 Nov 2012
Edited: Andrei Bobrov
on 22 Nov 2012
A=[1056;1078]
B=[31;25];
C = decbin(A,11);
D = dec2bin(B,4);
n = 4;
C(:,n : n + size(D,2) - 1) = D
0 Comments
More Answers (0)
See Also
Categories
Find more on Signal Analysis 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!