Skip to content

Commit 5b5beb6

Browse files
QuantumNovicecclauss
authored andcommitted
Update newton_raphson_method.py (TheAlgorithms#1057)
1 parent 61fec83 commit 5b5beb6

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

arithmetic_analysis/newton_raphson_method.py

+1-5
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)