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
using StochasticDiffEq, DiffEqNoiseProcess
f(u, p, t) =-u
g(u, p, t) =1.0
w =WienerProcess(0.0, 0.0, 0.0)
prob =SDEProblem(f, g, 0.0, (0.0, 1.0), noise=w)
u =solve(prob, SRIW1())
You were just missing the Z process. It now prints a better error:
"Higher order solver requires extra Brownian process Z. Thus WienerProcess(t, W0)is insufficient, you must useWienerProcess(t, W0, Z0)whereZ is another Brownian process"
Uh oh!
There was an error while loading. Please reload this page.
Describe the bug 🐞
The following snippet
produces
which does not happen when the noise process is not provided or when then integrator is
EM()
.Environment:
using Pkg; Pkg.status()
versioninfo()
Is it just me? Can someone reproduce?
The text was updated successfully, but these errors were encountered: