Hi,
I need some help in understanding this bit of FORTRAN code which is written by soemone else.
we have:
data abc /1.0d0,0.5d0,0.5d0,0.375d0,0.375d0,0.313d0,0.313d0,0.273d0,0.273d0,1.0d0,0.6366197d0,0.5d0,0.4244131d0,0.375d0,0.3395305d0,0.3125d0,0.2910261d0,0.2734375d0/
data pol1 /1.00095d0,-.045316d0,.614739d0,-.968351d0,.700536d0/
data pol2 /1.00084d0,-.040091d0,.689775d0,-1.20273d0,1.42963d0
data pol3 /1.12d0,-0.23d0,10.6d0,-21.7d0,30.4d0/
Well, the above bit I undestand-no problem.
Next,
I calculate a varioable called 'efg' and 'hij' and 'a' then
efg=efg*poly(5,pol3,hij)*dsqrt(3.1415926d0*a)
I do not follow what 'poly' indicates above??
My code compiles and runs as expected, but I need to know what is 'poly'?
Can anyone please help?
Christy