Borrar filtros
Borrar filtros

Saving Multiple .dat files

2 visualizaciones (últimos 30 días)
Leostar90
Leostar90 el 4 de Nov. de 2022
Comentada: Leostar90 el 7 de Nov. de 2022
I have a matrix with size of 2000*1000. I want to save it into multiple .dat files in such way that each .dat file should have 2000*1 (One vector). So in this way I will have 1000 dat files. I tried many ways but no success yet. Any idea?

Respuesta aceptada

Davide Masiello
Davide Masiello el 4 de Nov. de 2022
This should work
A = rand(2000,1000);
for col = 1:size(A,2)
filename = ['Column_',num2str(col),'.dat'];
writematrix(A(:,col),filename)
end
  1 comentario
Leostar90
Leostar90 el 7 de Nov. de 2022
Thanks. It worked perfectly.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB 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