Borrar filtros
Borrar filtros

Converting row to column in text file

5 visualizaciones (últimos 30 días)
Jhon Gray
Jhon Gray el 24 de Mzo. de 2021
Editada: Walter Roberson el 24 de Mzo. de 2021
I have a text file with annotation like this
I want to shift every alphabet in colum form. Like this.
Tried several ways. failed as the import data need comma or semicolor for separation.
Can anyone help with that?

Respuesta aceptada

Walter Roberson
Walter Roberson el 24 de Mzo. de 2021
Editada: Walter Roberson el 24 de Mzo. de 2021
%note: output file name must be different than input name for this
%particular version of the code to work.
[fid, msg] = fopen('new_x01.txt', 'w');
if fid < 0; error('Could not open file because "%s"', msg); end
fprintf(fid, '%c\n', fileread('x01.txt'));
fclose(fid);

Más respuestas (0)

Categorías

Más información sobre Data Import and Export en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by