Hello Guys,
Actually, I am not a Fortran ceder, but, since in our group there was code that I have to work on it, I switched to Fortran 77.
In part of my coding I tried to use a very simple recursive task that Fortran did not let me. This part of code is as follows and I do not know how to solve it.0
The variables p and q are previously calculated and cc has n+1 members. Could anyone help me to get rid of this headache.
Any suggestion will really be appreciated.
Thanks in advance
Miki
Actually, I am not a Fortran ceder, but, since in our group there was code that I have to work on it, I switched to Fortran 77.
In part of my coding I tried to use a very simple recursive task that Fortran did not let me. This part of code is as follows and I do not know how to solve it.0
Code:
do j=n,1,-1
cc(j)=p(j)*cc(j+1)+q(j)
enddo
The variables p and q are previously calculated and cc has n+1 members. Could anyone help me to get rid of this headache.
Any suggestion will really be appreciated.
Thanks in advance
Miki