Edit:Replacing 5 bits in Binary value
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commento
Risposta accettata
Andrei Bobrov
il 22 Nov 2012
Modificato: Andrei Bobrov
il 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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Signal Analysis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!