Posts by Lívia Dantas • 71 points
2 posts
-
1
votes2
answers354
viewsA: Finding roots of a function in Fortran
I couldn’t solve the problem with do while, so I only used if and Else. This is the part of the direct method. program direto implicit none integer n, i real*8, parameter ::…
-
6
votes2
answers354
viewsQ: Finding roots of a function in Fortran
I created a code that uses 3 methods to determine the roots of a function, the direct method of kicking x, Newton-Raphson and secant values. In the direct method, I set x values close to the roots,…