writing data to a .txt file
Mostrar comentarios más antiguos
i have 2 columns of data
a= { 1
2
3
4 }
b= { 5
6
7
8 }
i used
fprintf(f, '%d;%d;\n',[a b]);
i get output .txt file as
1;2;
3;4;
5;6;
7;8;
but i need data in this format
1;5;
2;6;
3;7;
4;8;
Respuesta aceptada
Más respuestas (1)
elham soltani
el 3 de Nov. de 2014
0 votos
what is f in fprintf(f, '%d%d\n',[a'; b']);??
Categorías
Más información sobre Data Type Conversion en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!