Edit:Replacing 5 bits in Binary value
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Respuesta aceptada
Andrei Bobrov
el 22 de Nov. de 2012
Editada: Andrei Bobrov
el 22 de Nov. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Signal Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!