How to convert text file to asci code ?

22 visualizaciones (últimos 30 días)
Mostafa Salah
Mostafa Salah el 2 de Mayo de 2020
Comentada: Walter Roberson el 5 de Mayo de 2020
I need to convert text file to binary ascii code to use in M-ASK modulation ? can any one help me ?

Respuestas (2)

Vimal Rathod
Vimal Rathod el 5 de Mayo de 2020
Hi,
Once you read the text data from your file, you can convert text to binary by using dec2bin function.
a = dec2bin("Some String");
The variable "a" will have the binary converted value.
For reading from text files you could refer to the following links of different read functions
Hope this helps.
  1 comentario
Walter Roberson
Walter Roberson el 5 de Mayo de 2020
dec2bin() will not work on string objects. It will work on character vectors (but remember that characters can have more than 8 significant bits.)

Iniciar sesión para comentar.


Walter Roberson
Walter Roberson el 5 de Mayo de 2020
fid = fopen('FileNameGoesHere', 'r');
file_bytes = fread(fid, [1 inf], '*uint8');
fclose(fid);
%if needed
file_bits = reshape( (dec2bin(filebytes, 8) - '0').', 1, []);
file_bits would be a vector of 0 and 1 values.

Categorías

Más información sobre Text Data Preparation 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!

Translated by