Borrar filtros
Borrar filtros

How can I save a .dat file?

2 visualizaciones (últimos 30 días)
John
John el 23 de Jun. de 2014
Respondida: mario rivera el 10 de Abr. de 2016
I opened a .dat file for reading on Matlab. It is shown as 2 tables on Matlab , one is one-dimension with the names of the variables and the other has all the values of the variable. I changed some (10) values on Matlab and now I want to save it as a new .dat file , or just save the changes to the old. Can you help me?? thanks
  1 comentario
José-Luis
José-Luis el 23 de Jun. de 2014
There is no universal ".dat" format. Usually, it means that the file stores text. So, depending on the complexity of structure used to store said data, you could use some high-level io routines ( dlmwrite(), save '-ascii' ) or you might be forced to go low-level ( fprintf() ).

Iniciar sesión para comentar.

Respuestas (2)

David Sanchez
David Sanchez el 23 de Jun. de 2014
take a look at the documentation of fprintf
doc fprintf
You will find right what you need

mario rivera
mario rivera el 10 de Abr. de 2016
Hello, I have saved a 3D matrix(22x23x27) using succesfully save "matrixname".dat. But when I try to load the file again in another script, the matrix showned is a 2D matrix (283251x9). How can I fix this mess?

Categorías

Más información sobre Data Import and Export 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