Sep 20, 2007 #1 Feddozz Mechanical Joined Dec 15, 2005 Messages 16 Location GB HI, I'm trying to read a row of real values in scientific notation separated with TABs. If they were separated by spaces I could have specified Code: FORMAT(F10.3,F10.3,...) but i don't know what to do in this case. Thanks
HI, I'm trying to read a row of real values in scientific notation separated with TABs. If they were separated by spaces I could have specified Code: FORMAT(F10.3,F10.3,...) but i don't know what to do in this case. Thanks
Sep 20, 2007 #2 prost Structural Joined Jan 2, 2002 Messages 583 Location US Try using an unformatted read statement: read(40,*) (A(I),I=1,N) Upvote 0 Downvote
Sep 21, 2007 Thread starter #3 Feddozz Mechanical Joined Dec 15, 2005 Messages 16 Location GB Hi Prost, Thanks for your advice. You are right, the unformatted read works fine with the TAB separated values. Upvote 0 Downvote
Hi Prost, Thanks for your advice. You are right, the unformatted read works fine with the TAB separated values.