Excuse me if this is a duplicate question, but I didn't see anything exactly like this.
What does READ() do in FORTRAN?
For example:
READ(1,82)
|
Excuse me if this is a duplicate question, but I didn't see anything exactly like this. What does READ() do in FORTRAN? For example:
|
||||
|
|
1 is the file handle, which you have to open with the proper open call. 82 is a label that references a format, meaning how you will report the data in terms of visual formatting.
In this example, the program accepts from the standard input (whose unit number is not specified, and so I put a *) an integer and a floating point value. the format says that the integer occupies the first four columns, then I have a float which stays in 8 columns, with 3 digits after the decimal point If I run the program now, and I don't follow exactly this format, the program will complain and crash, because the first 4 columns are expected to represent an integer (due to the I4 format), and "5 3." is not a valid integer
However, a correct specification (please note the three spaces before the number 5) will perform the correct operation (with a little tolerance, it's not that strict)
|
||||
|
|
|
It reads from "unit" (opened file) number 1, according to the FORMAT statement at label 82. However since the statement doesn't list any variables it has no place to put the data it's reading, which is unlikely to help; |
|||||||||||
|
|
It reads from unit 1 using the format specified by the statement numbered 82. |
|||
|
|
|
You can do a few more things with the fortran "read" statement. consider: read (unit #, format, options) ... generic
Where, "7" is the unit number read from, "*" is the format (default in this case), and "10" is the line number that the program control jumps to when the read device / file reaches the eof. The "options" slot can be filled with such things as "err='line number to go to'", or iostat, advance="no". You can check out some more of these The format part is where you can specify more precisely the format of the data that you expect. For instance, if you have a format specifier like:
Here, the "2X", refers to 2 spaces, the "2I5", refers to 2 integers that are 5 digits, "F7.3", refers to a decimal value which has a total length of 7, with three digits after the decimal. The "A" refers to a character. You can check out some more of these CHEERS! |
|||
|
|