How about having the functions for computing equations and finding the solutions? In this section, we will see how to do it.
Choosing the solver used to find the solution of equations
Getting ready
This is a collection of general-purpose, non-linear multidimensional solvers. These solvers find x for which F(x) = 0. Both x and F can be multidimensional.
Functions |
Parameters |
newton_krylov(F, xin[, iter, rdiff, method, ...]) |
Find a root of a function, using Krylov approximation for inverse Jacobian. |
anderson(F, xin[, iter, alpha, w0, M, ...]) |
Find a root of a function, using (extended) Anderson mixing. |
General non-linear solvers:
Functions |
Parameters |
broyden1(F, xin[, iter, alpha, ...]) |
Find... |