how to export the values from matrix into txt file?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Muhammad RSMY
el 3 de En. de 2018
Editada: Muhammad RSMY
el 3 de En. de 2018
hi friends
I have matrix suppose
[100 10]=size(matrix)
I want export the values of matrix in table format in txt
for example the output should look like
1 2 3 4 5 6 7 8 9 10
11 12 13 14 15 16 17 18 19 20
21 22 23 24 25 26 27 28 29 30
:
:
thanks for your kind support
0 comentarios
Respuesta aceptada
KSSV
el 3 de En. de 2018
A = rand(7) ;
fid = fopen('data.txt','w') ;
fprintf(fid,[repmat('%f\t', 1, size(A, 2)) '\n'], A');
fclose(fid) ;
Also read about dlmwrite, save.
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre MRI 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!