Skip to content

Commit a591bca

Browse files
QuantumNovicestokhos
authored andcommitted
Update newton_raphson_method.py (TheAlgorithms#1057)
1 parent 90a9206 commit a591bca

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

arithmetic_analysis/newton_raphson_method.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Implementing Newton Raphson method in Python
2-
# Author: Haseeb
2+
# Author: Syed Haseeb Shah (github.com/QuantumNovice)
33

44
from sympy import diff
55
from decimal import Decimal
@@ -30,7 +30,3 @@ def NewtonRaphson(func, a):
3030

3131
# Exponential Roots
3232
print ('exp(x) - 1 = 0', NewtonRaphson('exp(x) - 1', 0))
33-
34-
35-
36-

0 commit comments

Comments
 (0)