Readint TAB separated values
Readint TAB separated values
(OP)
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
but i don't know what to do in this case.
Thanks
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,...)
Thanks
RE: Readint TAB separated values
read(40,*) (A(I),I=1,N)
RE: Readint TAB separated values
Thanks for your advice. You are right, the unformatted read works fine with the TAB separated values.