You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry for the errors, there is an overhaul ongoing in FractionalDiffEq.jl to have a better-integrated ecosystem with SciML, so there may be some unexpected errors, could you please provide your Julia version and FractionalDiffEq.jl version on your computer?
On Mon, Aug 21, 2023 at 2:12 PM Qingyu Qu ***@***.***> wrote:
Sorry for the errors, there is an overhaul ongoing in FractionalDiffEq.jl
to have a better-integrated ecosystem with SciML, so there may be some
unexpected errors, could you please provide your Julia version and
FractionalDiffEq.jl version on your computer?
—
Reply to this email directly, view it on GitHub
<#87 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AK4NBY7UGVEZWHCDLB7M4WLXWNGBTANCNFSM6AAAAAA3XCWG74>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
See the Julia session below:
julia> using FractionalDiffEq, Plots
julia> function sys!(du, u, p, t)
du[1] = -0.05u[2] - 0.05u[3] + 0.01tanh(u[2])
du[2] = 0.05u[1] + 0.02u[2] + 0.01tanh(u[1])
du[3] = 0.1 - 0.2u[3] + 0.05u[1]u[3] + 0.01tanh(u[3])
end
sys! (generic function with 1 method)
julia> prob = FractionalDsicreteSystem(sys!, 0.98, [1, -1, 0])
ERROR: UndefVarError:
FractionalDsicreteSystem
not definedStacktrace:
[1] top-level scope
@ REPL[3]:1
julia> result = solve(prob, 7, GL())
ERROR: UndefVarError:
prob
not definedStacktrace:
[1] top-level scope
The text was updated successfully, but these errors were encountered: