MCPcopy Create free account
hub / github.com/subbarayudu-j/TheAlgorithms-Python / f1

Function f1

arithmetic_analysis/newton_method.py:14–15  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

12 return (x**3) - (2 * x) -5
13
14def f1(x):
15 return 3 * (x**2) -2
16
17if __name__ == "__main__":
18 print(newton(f,f1,3))

Callers 1

newton_raphsonFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected