Hi, i came across this in one of the programs and i had a hard time trying to figure out what F14.6 is. The program goes like this:
write(*,60)pint,(dexp(pi*xi)-dexp(-pi*xi))*dcos(pi*eta)
& /(dexp(pi)-dexp(-pi))
60 format('Numerical and exact values are:',
& F14.6,' and',F14.6,' respectively')
print*,'The value of phi is:',pint
pint is from a sub program above. But what does the F14.6 mean? Is it a format of displaying something?
write(*,60)pint,(dexp(pi*xi)-dexp(-pi*xi))*dcos(pi*eta)
& /(dexp(pi)-dexp(-pi))
60 format('Numerical and exact values are:',
& F14.6,' and',F14.6,' respectively')
print*,'The value of phi is:',pint
pint is from a sub program above. But what does the F14.6 mean? Is it a format of displaying something?