How to convert .txt file to .dat?
Show older comments
I created a text file in matlab and wrote my data on it. Now I need to convert this text file to .dat. How should I do this?
3 Comments
Walter Roberson
on 19 Sep 2018
You need to define what the dat file format should be. The .dat file extension is is used for a wide variety of unrelated file formats. There is no standard at all as to what needs to be in a .dat file. It depends on the program that will need to read the data.
Nooshdokht Bayatafshary
on 19 Sep 2018
Answers (1)
Walter Roberson
on 19 Sep 2018
0 votes
You can call movefile() if all you need is to change the file extension.
You can probably just change the code to open a .dat for writing instead of .txt but that depends on how the code creates the file.
Categories
Find more on Convert Image Type in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!