在 Julia 中使用 SymPy 进行处理后,我生成了一个非线性方程组。为简单起见,我将在此处对仅非线性方程的情况进行近似。我得到的是这样的等式:
R = (p) -> -5.0488*p + p^2.81 - 3.38/( p^(-1.0) )^2.0
我可以绘制 R 函数
using Plots
plot(R, 0,8)
我们可以看到 R 函数有两个零:p = 0 和 5.850< p < 8.75。我想找到正零。为此,我尝试了 nlsolve 函数,但出现错误:
using NLsolve
nlsolve(R , 5.8)
MethodError: no method matching nlsolve(::var"#1337#1338", ::Float64)
Closest candidates are:
nlsolve(::Any, ::Any, !Matched::AbstractArray; inplace, kwargs...)
首先,我的 nlsolve 函数哪里出错了?
如果可能的话,我会很感激在 Julia 中使用 SymPy 包的解决方案。