Borrar filtros
Borrar filtros

Save signal as .dat file

190 visualizaciones (últimos 30 días)
hajer
hajer el 28 de Dic. de 2011
Comentada: Hafsa Asad el 18 de Dic. de 2018
Hi , i have signal and i want to save it after modified(save as .dat ) how i can do that ?
  1 comentario
Walter Roberson
Walter Roberson el 28 de Dic. de 2011
There is no standard format for .dat files. .dat is used as an extension to indicate data files in some format that is private or unique to the program. Usually .dat is a binary format that would have to be written using the low level I/O routines.
We would have to know the exact internal format used by whatever program you would be reading this in with.

Iniciar sesión para comentar.

Respuestas (2)

Wayne King
Wayne King el 28 de Dic. de 2011
x = randn(100,1);
save test.dat x -ascii
% or
save('c:\folderyouwant\test.dat','x','-ascii');
save supports other options as well.
  2 comentarios
hajer
hajer el 28 de Dic. de 2011
thank you ,but i do not know the name of file because the name of file is entrance by the user
Walter Roberson
Walter Roberson el 28 de Dic. de 2011
When you use the () form of save, the first parameter can be a variable name that contains the file name. For example
UserFile = 'c:\folderyouwant\test.dat';
save(UserFile, 'x', '-ascii')

Iniciar sesión para comentar.


Hafsa Asad
Hafsa Asad el 22 de Mzo. de 2015
dlmwrite('myfile.dat', my_matrix_vals)
  2 comentarios
andy wen
andy wen el 10 de Abr. de 2017
thank you ;)
Hafsa Asad
Hafsa Asad el 18 de Dic. de 2018
my pleasure : )

Iniciar sesión para comentar.

Categorías

Más información sobre Standard File Formats 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