Edit:Replacing 5 bits in Binary value
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentar
Akzeptierte Antwort
Andrei Bobrov
am 22 Nov. 2012
Bearbeitet: Andrei Bobrov
am 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Signal Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!