フィルターのクリア

Save signal as .dat file

190 ビュー (過去 30 日間)
hajer
hajer 2011 年 12 月 28 日
コメント済み: Hafsa Asad 2018 年 12 月 18 日
Hi , i have signal and i want to save it after modified(save as .dat ) how i can do that ?
  1 件のコメント
Walter Roberson
Walter Roberson 2011 年 12 月 28 日
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.

サインインしてコメントする。

回答 (2 件)

Wayne King
Wayne King 2011 年 12 月 28 日
x = randn(100,1);
save test.dat x -ascii
% or
save('c:\folderyouwant\test.dat','x','-ascii');
save supports other options as well.
  2 件のコメント
hajer
hajer 2011 年 12 月 28 日
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 2011 年 12 月 28 日
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')

サインインしてコメントする。


Hafsa Asad
Hafsa Asad 2015 年 3 月 22 日
dlmwrite('myfile.dat', my_matrix_vals)
  2 件のコメント
andy wen
andy wen 2017 年 4 月 10 日
thank you ;)
Hafsa Asad
Hafsa Asad 2018 年 12 月 18 日
my pleasure : )

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeStandard File Formats についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by