python-scipyHow can I use Python and SciPy to find the zeros of a function?
Using Python and SciPy to find the zeros of a function can be done with the scipy.optimize.fsolve
function. This function takes a function, and an initial guess, and returns the zero of the function.
For example, to find the zero of the function f(x) = x^2 + 2x - 3
, we can use the following code:
from scipy.optimize import fsolve
def f(x):
return x**2 + 2*x - 3
x_zero = fsolve(f, 0)
print(x_zero)
Output example
[-3.]
The code consists of the following parts:
- Importing the
scipy.optimize.fsolve
function from the SciPy library:from scipy.optimize import fsolve
- Defining the function to find the zero of:
def f(x): return x**2 + 2*x - 3
- Calling the
fsolve
function with the function and initial guess as arguments:x_zero = fsolve(f, 0)
- Printing the zero of the function:
print(x_zero)
Helpful links
More of Python Scipy
- How do I use Python XlsxWriter to write a NumPy array to an Excel file?
- How do I use the trapz function in Python SciPy?
- How do I create a 2D array of zeros using Python and NumPy?
- How to use Python, XML-RPC, and NumPy together?
- How do I calculate variance using Python and SciPy?
- How can I use Python and Numpy to parse XML data?
- How do I use Python Numpy to read and write Excel (.xlsx) files?
- How can I use Python Numpy to select elements from an array based on multiple conditions?
- How do I download a Python Scipy .whl file?
- How do I use the numpy vstack function in Python?
See more codes...