Recent content by Axios

  1. A

    Fortran Fortran reading scientific form

    I'm using OSX 10.6, and ifort 11.1, if that helps...thanks.
  2. A

    Fortran Fortran reading scientific form

    Thanks for the reply. 1. The reason I'm sure I'm reading the correct file is that when I changed the number in the file I meant to read, the output is changed, but changing in a wield way. For example, when I changed the first three number in the first line of input to...
  3. A

    Fortran Fortran reading scientific form

    The input file looks like this: (with "B" representing the blank, and there are in total 6 number per line) 0.1234567000E+000BB1.0378216950E+000BB1.0378779900E-009BB... These numbers are output previously by using the command: write (file_id,'(6(ES17.10E3,2X))'), a,b,c,d,e,f The problem...
  4. A

    Fortran Fortran reading scientific form

    Hi, I have been struggling with the Fortran IO for a while. Here is the question, any comments will be much appreciated. I output some double precision numbers with the format: write (file_id,'(6(ES17.10E3,2X))'), a,b,c,d,e,f ! say the filename is 'data.dat' It works fine. But...
Back
Top