Posts by Ivens • 21 points
2 posts
-
1
votes2
answers354
viewsA: Finding roots of a function in Fortran
I think you need to initialize the values of r1d, r2d and r3d before using them on the first call of f(r1d). If you do not do this, the initial values of these variables will be assigned by the…
-
1
votes1
answer95
viewsA: Problem with PRINT command in FORTRAN 95
I don’t remember facing that problem. You could insert the code snippet you are referring to? One idea to solve is to test with WRITE to write on screen: WRITE(*,'(a)') mystring…