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 = [
48
48
" api/nlsolve.md" ,
49
49
" api/nlsolvers.md" ,
50
50
" api/petsc.md" ,
51
+ " api/scipy.md" ,
51
52
" api/siamfanlequations.md" ,
52
53
" api/speedmapping.md" ,
53
54
" 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