Skip to content

Commit 2f5829f

Browse files
Update sde_example.md
1 parent b2de9c5 commit 2f5829f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/tutorials/sde_example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ function g!(du, u, p, t) # It actually represents a diagonal matrix [3.0 0 0; 0
165165
du[3] = 3.0
166166
end
167167
168-
prob_sde_lorenz = SDEProblem(f!, g!, [1.0, 0.0, 0.0], (0.0, 10.0))
168+
prob_sde_lorenz = DE.SDEProblem(f!, g!, [1.0, 0.0, 0.0], (0.0, 10.0))
169169
sol = DE.solve(prob_sde_lorenz)
170170
Plots.plot(sol, idxs = (1, 2, 3))
171171
```

0 commit comments

Comments
 (0)