thank u for your response....each 8 bit displayed in different lines(that means in the form of matrix)..i want to concate those 24 bits..how can i concate ?
there are two 8 bit binary values in a single variable...how can i concate these two values???
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
hemalatha
el 17 de Dic. de 2014
Comentada: hemalatha
el 17 de Dic. de 2014
a='asd';
b=double(a);
c=dec2bin(b,8);
d=length(c);
i need to get d as 24 how can i get?
Respuesta aceptada
Titus Edelhofer
el 17 de Dic. de 2014
Hi,
concatenate them using reshape:
reshape(c', 1, numel(c))
Titus
Más respuestas (2)
Andrei Bobrov
el 17 de Dic. de 2014
Editada: Andrei Bobrov
el 17 de Dic. de 2014
on comment by Hemalatha
a='asd';
b=double(a);
c=dec2bin(b,8).';
out = c(:)';
Ver también
Categorías
Más información sobre Logical 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!