File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ pages = [
4848 " api/nlsolve.md" ,
4949 " api/nlsolvers.md" ,
5050 " api/petsc.md" ,
51+ " api/scipy.md" ,
5152 " api/siamfanlequations.md" ,
5253 " api/speedmapping.md" ,
5354 " api/sundials.md" ,
Original file line number Diff line number Diff line change 1+ # SciPy
2+
3+ This is an extension for importing solvers from
4+ [ SciPy] ( https://scipy.org/ ) into the SciML
5+ interface. Note that these solvers do not come by default, and thus one needs to install
6+ the package before using these solvers:
7+
8+ ``` julia
9+ import Pkg
10+ Pkg. add (" NonlinearSolveSciPy" )
11+ import NonlinearSolveSciPy as NLSP
12+ ```
13+
14+ Note that using this package requires Python and SciPy to be available via PythonCall.jl.
15+
16+ ## Solver API
17+
18+ ``` @docs
19+ NonlinearSolveSciPy.SciPyLeastSquares
20+ NonlinearSolveSciPy.SciPyLeastSquaresTRF
21+ NonlinearSolveSciPy.SciPyLeastSquaresDogbox
22+ NonlinearSolveSciPy.SciPyLeastSquaresLM
23+ NonlinearSolveSciPy.SciPyRoot
24+ NonlinearSolveSciPy.SciPyRootScalar
25+ ```
You can’t perform that action at this time.
0 commit comments