Hello,
I am implementing simple check-pointing in an application so that the history is saved to a file and upon restart the data is read from this file.
-> The history file contains an array of real*8 numbers and precision is very important in the program.
I first implemented this using...
Hi,
Thank You..That worked !!
However when I read the same using the read statement, i have a new problem.
My read statement is like this:
read(chkwrite,327,REC=last_line),
+ (X(j),j=1,N),F,nfev,LF
327 format(11D15.6,1PD18.10,I6,A)
the values are read...
Hello,
I am trying to write a file as direct access formatted file: The code for this is:
open(unit=9,file='chk.dat',form='formatted',
+ access='DIRECT',RECL=200)
write(9,326,REC=NF), (X(I),I=1,11),F,NF
326 format(11f15.6,1PD18.10,i8)...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.