FractionalDiffEq.jl icon indicating copy to clipboard operation
FractionalDiffEq.jl copied to clipboard

Example on system of fractional difference equations returned fractionalDiscreteSystem not defined

Open ay111 opened this issue 1 year ago • 2 comments

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 defined Stacktrace: [1] top-level scope @ REPL[3]:1

julia> result = solve(prob, 7, GL()) ERROR: UndefVarError: prob not defined Stacktrace: [1] top-level scope

ay111 avatar Aug 20 '23 07:08 ay111