someone produced an output for me with the following subroutine
subroutine write(...)
REAL*8 v(a), h(b), f(b)
integer iv(b+1), jv(a)
write(ium) a, b, c, d, e
write(ium) (iv(i),i=1,b+1)
write(ium) (jv(i),i=1,a)
write(ium) (v(i),i=1,a)
write(ium) (f(i),i=1,b)
write(ium) (h(i),i=1,b)
return
end
I know that a, b, c, d and e will all be integers (although the routine doesn't specify them as such, is that okay?!). The whole output went into a binary file which he send to me and I now want to retrieve all the (seperated) information back.
I really don't know much about Fortran I/O so I'm hoping someone can help...