<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Quote:Shrinivassan R. wrote:I in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127695#M133307</link>
    <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Shrinivassan R. wrote:&lt;BR /&gt;&lt;SPAN style="font-size: 1em;"&gt;I changed the length to 50 but still there is an exception..&amp;nbsp; I even changed it 80 but the same exception are thrown.&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em;"&gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;You need to know the structure of your data files precisely, if you wish to access them as fixed-record-length direct-access files. Willy-nilly changing of the RECL value in the OPEN statement will just waste time.&lt;/P&gt;

&lt;P&gt;Here is a modified version of the code in #11 to read the data file displayed in #14:&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;      program test
      INTEGER ISEQ,cdate,cyr,n,eyr,i,i3(5)
!
      OPEN(14,file='r48.txt',status='OLD',access='DIRECT',
     &amp;amp;               form='FORMATTED',recl=50)
      i=2
      DO while(i .le.8)
         Read(14,200,rec=i)iseq,cdate,cyr,n,eyr,i3
         write(*,*)i,iseq,cdate,cyr,n,eyr,i3
         i=i*2
      end do
      CLOSE(14)
200   FORMAT(I4,I9,I5,I2,I5,I3,4I5)
      STOP
      end
&lt;/PRE&gt;

&lt;P&gt;I used a record length of 50 precisely because the data has 48 'payload' characters per line/record and I stored the file as a CR+LF text file.&lt;/P&gt;</description>
    <pubDate>Wed, 14 Jun 2017 11:43:00 GMT</pubDate>
    <dc:creator>mecej4</dc:creator>
    <dc:date>2017-06-14T11:43:00Z</dc:date>
    <item>
      <title>Format error in reading numbers</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127678#M133290</link>
      <description>&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;FONT size="3"&gt;&lt;FONT face="Times New Roman"&gt;&lt;SPAN style="background: yellow; color: rgb(31, 73, 125);"&gt;When the below command executes, it read the file content &lt;/SPAN&gt;&lt;SPAN style="background: yellow; color: red;"&gt;(&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;SPAN style="background: yellow; color: red; font-family: Consolas; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 35) &lt;/SPAN&gt;&lt;FONT size="3"&gt;&lt;FONT face="Times New Roman"&gt;&lt;SPAN style="background: yellow; color: rgb(31, 73, 125);"&gt;where all the spaces are ignored and it reads only the numbers in that case the size of the number is only 2 bytes, but we are trying to read &lt;/SPAN&gt;&lt;SPAN style="background: yellow; color: red;"&gt;8 byte &lt;/SPAN&gt;&lt;SPAN style="background: yellow; color: rgb(31, 73, 125);"&gt;number which throws the exception.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="color: blue;"&gt;&lt;FONT face="Times New Roman" size="3"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="background: yellow; color: blue; font-family: Consolas; font-size: 10pt;"&gt;FORMAT&lt;/SPAN&gt;&lt;SPAN style="background: yellow; color: black; font-family: Consolas; font-size: 10pt;"&gt;(I8)&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	IF I use FORMAT(I2) then there is no exception&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&amp;nbsp;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; program test&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTEGER(4) IRATE&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OPEN(4,file='C:\Srini\Files\Arat51',status='OLD',access='DIRECT',&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;amp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; form='FORMATTED',recl=8)&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&amp;nbsp;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Read(4,200,rec=2)IRATE&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLOSE(4)&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;200&amp;nbsp;&amp;nbsp; FORMAT(I8)&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STOP&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;SPAN style="font-family: Consolas; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 12:27:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127678#M133290</guid>
      <dc:creator>Shrinivassan_R_</dc:creator>
      <dc:date>2017-06-13T12:27:18Z</dc:date>
    </item>
    <item>
      <title>Using _formatted_ direct</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127679#M133291</link>
      <description>&lt;P&gt;Using _formatted_ direct access files is rather unusual. (Most of the time direct access files are unformatted, that is, raw bytes are stored, not human-readable numbers). As you set the record length to 8, it may be that the last one or two positions in these records are actually reserved for carriage-return/linefeed characters. This means that you format is simply too wide. Using a format I2 instead of I8 means that the read action stays well within the record and can therefore proceed.&lt;/P&gt;

&lt;P&gt;What is the reason for using this kind of files? There may very well be an easier-to-use alternative. For instance: simply a sequential file.&lt;/P&gt;

&lt;P&gt;What is the error message you get?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 12:33:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127679#M133291</guid>
      <dc:creator>Arjen_Markus</dc:creator>
      <dc:date>2017-06-13T12:33:32Z</dc:date>
    </item>
    <item>
      <title>The file content looks like,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127680#M133292</link>
      <description>&lt;P&gt;The file content looks like,&lt;/P&gt;

&lt;P&gt;&amp;nbsp; 131072&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 35&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 35&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 852&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 916&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 986&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; 1064&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 979&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 989&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 999&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; 1011&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; 1023&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; 1037&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; 1051&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;The&amp;nbsp; error we get for this is&amp;nbsp; forrtl: severe (64): input conversion error&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 13:02:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127680#M133292</guid>
      <dc:creator>Shrinivassan_R_</dc:creator>
      <dc:date>2017-06-13T13:02:51Z</dc:date>
    </item>
    <item>
      <title>You could try reading it like</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127681#M133293</link>
      <description>&lt;P&gt;You could try reading it like this:&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;integer :: ierr

open( 4, file = '... proper name ...' )

do 
    read( 4, *, iostat = ierr ) irate
    if ( ierr /= 0 ) exit
enddo 

close( 4 ) &lt;/PRE&gt;

&lt;P&gt;So rather than opening it as a direct access, use the default. Instead of a specific format, use list-directed reads (the *). While it is not completely safe (see below), it is more flexible and as you open it as a sequential file, the lines may be any length.&lt;/P&gt;

&lt;P&gt;(Safety of list-directed reading: a list-directed read will read on until all items in the read statement could be read or an error occurred. There are a few more rules that might bite you, although I have seldom seen them in practice. If you really need to read the file line by line, then use :&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;character(len=10) :: line

read( 4, '(a)', iostat = ierr ) line
read( line, * ) irate&lt;/PRE&gt;

&lt;P&gt;with appropriate changes to fit in the code above)&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 13:11:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127681#M133293</guid>
      <dc:creator>Arjen_Markus</dc:creator>
      <dc:date>2017-06-13T13:11:13Z</dc:date>
    </item>
    <item>
      <title>The read statement in real</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127682#M133294</link>
      <description>&lt;P&gt;The read statement in real time code will be like &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;READ&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;(4,200,rec=IPOS)IRATE, where IPOS will have the line number from where the data needs to be taken from file.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;so I cant change the existing logic..:(&lt;/P&gt;

&lt;P&gt;The same code works well in win Xp Compaq visual Fortran compiler but in Win 7 Intel visual Fortran its throws the error.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 13:20:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127682#M133294</guid>
      <dc:creator>Shrinivassan_R_</dc:creator>
      <dc:date>2017-06-13T13:20:20Z</dc:date>
    </item>
    <item>
      <title>I tried this in a small</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127683#M133295</link>
      <description>&lt;P&gt;I tried this in a small program: using a file with records of numbers like 12345678.&lt;/P&gt;

&lt;P&gt;When I open the file with a record-length of 8, then the first record is read correctly, but the second causes an input conversion error.&lt;/P&gt;

&lt;P&gt;However, if I open the file with record-length 10 (to explicitly include the carriage-return/linefeed bytes), it works fine. My guess is therefore that Compaq Fortran automatically corrected for the extra bytes and that Intel Fortran does not. (The record-length of 10 bytes works fine with gfortran too)&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 13:34:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127683#M133295</guid>
      <dc:creator>Arjen_Markus</dc:creator>
      <dc:date>2017-06-13T13:34:55Z</dc:date>
    </item>
    <item>
      <title>The below code works fine but</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127684#M133296</link>
      <description>&lt;P&gt;The below code works fine but it reads the first line, how can I make it as by entering the line number ti should read&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;

&lt;P&gt;{code}&lt;/P&gt;

&lt;PRE&gt;character(len=10) :: line

read( 4, '(a)', iostat = ierr ) line
read( line, * ) irate&lt;/PRE&gt;

&lt;P&gt;{code}&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 13:42:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127684#M133296</guid>
      <dc:creator>Shrinivassan_R_</dc:creator>
      <dc:date>2017-06-13T13:42:06Z</dc:date>
    </item>
    <item>
      <title>See my other answer - you</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127685#M133297</link>
      <description>&lt;P&gt;See my other answer - you seem to require genuine direct access. I think the record length is wrong&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 13:43:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127685#M133297</guid>
      <dc:creator>Arjen_Markus</dc:creator>
      <dc:date>2017-06-13T13:43:39Z</dc:date>
    </item>
    <item>
      <title>The below command fails but</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127686#M133298</link>
      <description>&lt;P&gt;The below command fails but if I use rec=1 no error&amp;nbsp;the first line executes..&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;read&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;( 4, &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;'(a)'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;,rec=3, iostat = ierr ) line &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;I am new Fortran please help..&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 14:52:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127686#M133298</guid>
      <dc:creator>Shrinivassan_R_</dc:creator>
      <dc:date>2017-06-13T14:52:26Z</dc:date>
    </item>
    <item>
      <title>I understand that you are new</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127687#M133299</link>
      <description>&lt;P&gt;I understand that you are new to Fortran, but it would help if you provide enough information:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;How does it fail? What is the error message?&lt;/LI&gt;
	&lt;LI&gt;How do you open the file?&lt;/LI&gt;
	&lt;LI&gt;Better still: Can you post the complete program?&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;Note my previous post - about the record length - my guess is that it should be 10 not 8.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 14:59:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127687#M133299</guid>
      <dc:creator>Arjen_Markus</dc:creator>
      <dc:date>2017-06-13T14:59:37Z</dc:date>
    </item>
    <item>
      <title>With your data file, the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127688#M133300</link>
      <description>&lt;P&gt;With your data file, the following program works correctly if I specify RECL=10 in the OPEN statement, with the data file containing CR+LF at end-of-line. Similarly, with the datafile using LF for EOL, using RECL=9 in the OPEN statement gives correct output.&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;      program test
      INTEGER(4) IRATE,i
!
      OPEN(4,file='Arat51',status='OLD',access='DIRECT',
     &amp;amp;               form='FORMATTED',recl=10)
      i=2
      DO while(i .le.16)
         Read(4,200,rec=i)IRATE
         write(*,*)i,irate
         i=i*2
      end do
      CLOSE(4)
200   FORMAT(I8)
      STOP
      end&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 15:14:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127688#M133300</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2017-06-13T15:14:12Z</dc:date>
    </item>
    <item>
      <title>Thank you very much.. by</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127689#M133301</link>
      <description>&lt;P&gt;Thank you very much.. by changing the&amp;nbsp; recl value to 10 (&lt;FONT face="Courier New"&gt;recl&lt;CODE class="fortran plain"&gt;=10) the code worked without any exception...&lt;/CODE&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT face="Courier New"&gt;&lt;CODE class="fortran plain"&gt;Will implement the same in the live code.. &lt;/CODE&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT face="Courier New"&gt;&lt;CODE class="fortran plain"&gt;but can you guide what is the use for recl? why do we need to change it to 10?&lt;/CODE&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 17:43:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127689#M133301</guid>
      <dc:creator>Shrinivassan_R_</dc:creator>
      <dc:date>2017-06-13T17:43:06Z</dc:date>
    </item>
    <item>
      <title>One explanation is that the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127690#M133302</link>
      <description>&lt;P&gt;One explanation is that the value specified with RECL= is used to map record number to the byte offset in the file. Since Windows and Unix have a simple notion of a file as a collection of bytes, the old mainframe record-oriented file types have to be simulated.&lt;/P&gt;

&lt;P&gt;Thus, if you have a file with 8 characters per line, and CR+LF as end-of-line, Rec-1 is at byte 0, Rec-2 is at byte 10,..., and Rec-n is at byte (n-1)*10.&lt;/P&gt;

&lt;P&gt;There is a keyword to help with record sizes; use an IOLENGTH= clause in an INQUIRE statement on the file.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 18:09:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127690#M133302</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2017-06-13T18:09:58Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127691#M133303</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Therese was one more error in another file,&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;program&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; test2&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;INTEGER&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;(4) IPOS&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;INTEGER&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;*4 TBDATE(3),IEFFDT&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;DIMENSION&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; ITB(0:3)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;INTEGER&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; IYEVT,IMEVT,IENTRY,ITERM&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;integer&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; :: ierr&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;OPEN&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;(4,file='File1'&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;,status=&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;'OLD'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;,SHARE=&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;'denywr'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;,&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#ffffff" face="Consolas" size="2"&gt;&lt;FONT color="#ffffff" face="Consolas" size="2"&gt;&lt;FONT color="#ffffff" face="Consolas" size="2"&gt;&amp;amp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; access=&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;'DIRECT'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;,form=&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;'FORMATTED'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;,recl=48)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;READ&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;(4,900,REC=1557)IPOS,IEFFDT,IYEVT,IMEVT,IENTRY,ITERM,&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#ffffff" face="Consolas" size="2"&gt;&lt;FONT color="#ffffff" face="Consolas" size="2"&gt;&lt;FONT color="#ffffff" face="Consolas" size="2"&gt;&amp;amp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; (ITB(I),I=0,3)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;CLOSE&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;(4)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#ff0000" face="Consolas" size="2"&gt;&lt;FONT color="#ff0000" face="Consolas" size="2"&gt;&lt;FONT color="#ff0000" face="Consolas" size="2"&gt;900&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;FORMAT&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;(I4,I9,I5,I2,I5,I3,4I5)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;stop&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;end&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;The File content looks like,&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;1548 20170201 2029 8 2010 19&amp;nbsp;&amp;nbsp; 15&amp;nbsp; -11&amp;nbsp;&amp;nbsp; 15&amp;nbsp;&amp;nbsp; 41&lt;BR /&gt;
	1549 20170201 2029 8 2011 18&amp;nbsp;&amp;nbsp; 13&amp;nbsp; -12&amp;nbsp;&amp;nbsp; 13&amp;nbsp;&amp;nbsp; 37&lt;BR /&gt;
	1550 20170201 2029 8 2012 17&amp;nbsp;&amp;nbsp; 11&amp;nbsp; -12&amp;nbsp;&amp;nbsp; 11&amp;nbsp;&amp;nbsp; 34&lt;BR /&gt;
	1551 20170201 2029 8 2013 16&amp;nbsp;&amp;nbsp;&amp;nbsp; 8&amp;nbsp; -13&amp;nbsp;&amp;nbsp;&amp;nbsp; 8&amp;nbsp;&amp;nbsp; 30&lt;BR /&gt;
	1552 20170201 2029 8 2014 15&amp;nbsp;&amp;nbsp;&amp;nbsp; 5&amp;nbsp; -14&amp;nbsp;&amp;nbsp;&amp;nbsp; 5&amp;nbsp;&amp;nbsp; 25&lt;BR /&gt;
	1553 20170201 2029 8 2015 14&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp; -15&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp; 19&lt;BR /&gt;
	1554 20170201 2029 8 2016 13&amp;nbsp;&amp;nbsp; -2&amp;nbsp; -17&amp;nbsp;&amp;nbsp; -2&amp;nbsp;&amp;nbsp; 12&lt;BR /&gt;
	1555 20170201 2029 8 2017 12&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;BR /&gt;
	1556 20170201 2030 8 1985 45&amp;nbsp;&amp;nbsp; 28&amp;nbsp; -19&amp;nbsp;&amp;nbsp; 28&amp;nbsp;&amp;nbsp; 75&lt;BR /&gt;
	1557 20170201 2030 8 1986 44&amp;nbsp;&amp;nbsp; 26&amp;nbsp; -20&amp;nbsp;&amp;nbsp; 26&amp;nbsp;&amp;nbsp; 71&lt;/P&gt;

&lt;P&gt;I tried changing the recl values but still exception is thrown&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 10:53:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127691#M133303</guid>
      <dc:creator>Shrinivassan_R_</dc:creator>
      <dc:date>2017-06-14T10:53:14Z</dc:date>
    </item>
    <item>
      <title>Well, the problem seems to be</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127692#M133304</link>
      <description>&lt;P&gt;Well, the problem seems to be the same thing: a mismatch between the actual length of the records in the file and the length that you specify in the program. If you carefully count the number of positions expected by the format, you get to 48. The length specified. But as before, you need to also include the invisible bytes. So use a length of 50.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 11:07:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127692#M133304</guid>
      <dc:creator>Arjen_Markus</dc:creator>
      <dc:date>2017-06-14T11:07:22Z</dc:date>
    </item>
    <item>
      <title>I changed the length to 50</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127693#M133305</link>
      <description>&lt;P&gt;I changed the length to 50 but still there is an exception..&amp;nbsp; I even changed it 80 but the same exception are thrown.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 11:26:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127693#M133305</guid>
      <dc:creator>Shrinivassan_R_</dc:creator>
      <dc:date>2017-06-14T11:26:11Z</dc:date>
    </item>
    <item>
      <title>You should be aware that this</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127694#M133306</link>
      <description>&lt;P&gt;You should be aware that this is a very fragile way of working: if the length of the records in the file is not constant, it will fail, since the bytes that are read critically depend on the length that you give. Even as much as a single additional byte or a single byte not present (a space for instance) will cause problems.&lt;/P&gt;

&lt;P&gt;It makes no sense to set the record length to, say, 80, because, unlike with sequential files, there is NO flexibility. Your record length in the program must match exactly the record length in the file. Down to the last invisible byte.&lt;/P&gt;

&lt;P&gt;Is it possible to change the program that produces these files? For instance to have it write _unformatted_ direct-access files?&lt;/P&gt;

&lt;P&gt;Your only hope is to examine the input file byte by byte. If - and ONLY if - every record has the same length, the method you have been using will work with that length. Here is a small Fortran program that you can use:&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;! chkfile.f90 --
!     Read a (text) file byte by byte and report the perceived record length
!
program chkfile
    implicit none

    integer          :: ierr, length, recno
    character(len=1) :: byte

    open( 10, file = 'example.inp', access = 'stream' )

    recno  = 0
    length = 0
    do
        read( 10, iostat = ierr ) byte

        if ( ierr /= 0 ) then
            exit
        endif

        length = length + 1
        if ( byte == achar(10) ) then
            recno = recno + 1
            write( *, '(a,i5,a,i10)' ) 'Length of record', recno, ': ', length
            length = 0
        endif
    enddo
endprogram
&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 11:39:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127694#M133306</guid>
      <dc:creator>Arjen_Markus</dc:creator>
      <dc:date>2017-06-14T11:39:09Z</dc:date>
    </item>
    <item>
      <title>Quote:Shrinivassan R. wrote:I</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127695#M133307</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Shrinivassan R. wrote:&lt;BR /&gt;&lt;SPAN style="font-size: 1em;"&gt;I changed the length to 50 but still there is an exception..&amp;nbsp; I even changed it 80 but the same exception are thrown.&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em;"&gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;You need to know the structure of your data files precisely, if you wish to access them as fixed-record-length direct-access files. Willy-nilly changing of the RECL value in the OPEN statement will just waste time.&lt;/P&gt;

&lt;P&gt;Here is a modified version of the code in #11 to read the data file displayed in #14:&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;      program test
      INTEGER ISEQ,cdate,cyr,n,eyr,i,i3(5)
!
      OPEN(14,file='r48.txt',status='OLD',access='DIRECT',
     &amp;amp;               form='FORMATTED',recl=50)
      i=2
      DO while(i .le.8)
         Read(14,200,rec=i)iseq,cdate,cyr,n,eyr,i3
         write(*,*)i,iseq,cdate,cyr,n,eyr,i3
         i=i*2
      end do
      CLOSE(14)
200   FORMAT(I4,I9,I5,I2,I5,I3,4I5)
      STOP
      end
&lt;/PRE&gt;

&lt;P&gt;I used a record length of 50 precisely because the data has 48 'payload' characters per line/record and I stored the file as a CR+LF text file.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 11:43:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127695#M133307</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2017-06-14T11:43:00Z</dc:date>
    </item>
    <item>
      <title>Thanks a million.. It worked:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127696#M133308</link>
      <description>&lt;P&gt;Thanks a million.. It worked:)&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 13:50:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127696#M133308</guid>
      <dc:creator>Shrinivassan_R_</dc:creator>
      <dc:date>2017-06-14T13:50:56Z</dc:date>
    </item>
    <item>
      <title>Something doesn't seem quite</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127697#M133309</link>
      <description>&lt;P&gt;Something doesn't&amp;nbsp;seem quite right.&amp;nbsp; The user should never need to specify a record length that includes compiler added record structure content, especially for direct access (e.g. the leading and trailing length value that some compilers add to emulate fixed length records on "real" OS').&amp;nbsp; The user should only need to define&amp;nbsp;the "data"&amp;nbsp;content.&amp;nbsp; Record structure added content should be&amp;nbsp;assumed by the compiler based upon the specified open parameters.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2017 12:15:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Format-error-in-reading-numbers/m-p/1127697#M133309</guid>
      <dc:creator>garylscott1</dc:creator>
      <dc:date>2017-06-16T12:15:25Z</dc:date>
    </item>
  </channel>
</rss>

