Borrar filtros
Borrar filtros

import data into a txt file from matlab

1 visualización (últimos 30 días)
Tinkul
Tinkul el 13 de Sept. de 2012
I want to import data into txt file. I have written the prog.
m=[1 2 3 4 5 6 6 6 7 8 9] fid = fopen('data.txt', 'w'); % data.txt is the txt file where i have to import fprintf(fid, '%d', m); fclose(fid);
But the result shows none....Please help

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 13 de Sept. de 2012
Editada: Azzi Abdelmalek el 13 de Sept. de 2012
you mean export data to text file
m=[1 2 3 4 5 6 6 6 7 8 9]
fid = fopen('data.txt', 'w');
fprintf(fid, '%d', m);
fclose(fid);
works fine
or
dlmwrite('file.txt',m,'delimiter',' ')

Más respuestas (0)

Categorías

Más información sobre Convert Image Type en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by