fprintf in a DATA *.dat format

조회 수: 2 (최근 30일)
MM
MM 2013년 5월 21일
I use matlab to format a 4 columns dataset into a ascii file which is in turn the input for a fortran routine (that i cannot modify or see the source).
I found that the following code does produce the good array of characters (spaces, numeric, text) but i need to open the txt file with a text editor afterwards and "save as" "DATA *.dat" to make it suitable for my fortran routine.
Is there a way to do that within my matlab code ?
  댓글 수: 2
Matt Kindig
Matt Kindig 2013년 5월 21일
I'm not exactly sure what your question is. What is not working?
MM
MM 2013년 5월 21일
I d like to avoid having to open the file afterwards with a text editor to transform to the appropriate encoding
i need to open the txt file with a text editor afterwards and "save as" "DATA *.dat" to make it suitable for my fortran routine.
by the way i m on win7

댓글을 달려면 로그인하십시오.

답변 (2개)

per isakson
per isakson 2013년 5월 21일
편집: per isakson 2013년 5월 21일
What happens if you just change
namefile='nameout.txt';
to
namefile='nameout.dat';
What encoding does the fortran-program require?
Doc on fopen says:
encoding
String that specifies the character encoding scheme to use for subsequent
read and write operations, including fscanf, fprintf, fgetl, fgets,
fread, and fwrite.
  댓글 수: 4
MM
MM 2013년 5월 21일
i used winedt
the fortran error isn't explicit about the encoding
per isakson
per isakson 2013년 5월 21일
편집: per isakson 2013년 5월 21일
I don't know
  • is matlab and the fortan program on the same computer and operating system?
  • can you find out the encoding from the winedt help?
  • we don't really know what winedt does to the file?
  • can winedt be called by matlab? dos('winedt something' )
  • just take a chance and experiment with some different encodings fopen( .. )

댓글을 달려면 로그인하십시오.


Walter Roberson
Walter Roberson 2013년 5월 21일
There is no particular format for .dat files; ".dat" is a suffix used to mean any binary format (and probably not one of the standardized ones.)
What you might perhaps be looking for is to use Fortran's unformatted read. If that is the case, then write the data out using fwrite()

카테고리

Help CenterFile Exchange에서 Standard File Formats에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by