1 parent 61fec83 commit 5b5beb6Copy full SHA for 5b5beb6
1 file changed
arithmetic_analysis/newton_raphson_method.py
@@ -1,5 +1,5 @@
1
# Implementing Newton Raphson method in Python
2
-# Author: Haseeb
+# Author: Syed Haseeb Shah (github.com/QuantumNovice)
3
4
from sympy import diff
5
from decimal import Decimal
@@ -30,7 +30,3 @@ def NewtonRaphson(func, a):
30
31
# Exponential Roots
32
print ('exp(x) - 1 = 0', NewtonRaphson('exp(x) - 1', 0))
33
-
34
35
36
0 commit comments