Borrar filtros
Borrar filtros

ascii to binary, binary to ascii

27 visualizaciones (últimos 30 días)
osman yurdakul
osman yurdakul el 20 de Mayo de 2011
Comentada: Walter Roberson el 18 de Mayo de 2016
hello matlab lovers :)
x = dec2bin('enginering');
x =
1100101
1101110
1100111
1101001
1101110
1100101
1100101
1110010
1101001
1101110
1100111
y = reshape(x',1,numel(x));
y =
11001011101110110011111010011101110110010111001011110010110100111011101100111
and i will send this data from transmitter to receiver...when the receiver receives the data,it will convert y to word of engineering data and i will see word of engineering on the monitor...
that is what i mean;
how can i get back word of engineering from string of y in matlab?
pls help me...

Respuesta aceptada

Matt Fig
Matt Fig el 20 de Mayo de 2011
char(bin2dec(reshape(y,7,[]).')).'

Más respuestas (1)

Walter Roberson
Walter Roberson el 20 de Mayo de 2011
bin2dec(reshape(y,7,[]).')
  2 comentarios
Kayvan Ray
Kayvan Ray el 17 de Mayo de 2016
I used that but got this Error! What's the Problem?!
Error using reshape Product of known dimensions, 7, not divisible into total number of elements, 720.
Walter Roberson
Walter Roberson el 18 de Mayo de 2016
Your data is 8 bit wide not 7. The person who asked the question failed to specify the number of bits of output in the dec2bin() call, so it was automatically chosen as the smallest number of bits needed to represent the characters.
In short:
bin2dec(reshape(y,8,[]).')

Iniciar sesión para comentar.

Categorías

Más información sobre Cell Arrays en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by