From a35a3807abd4920bc14c95a1eab47cf710e02213 Mon Sep 17 00:00:00 2001 From: Michael Green Date: Sun, 7 Jul 2024 12:17:39 +0200 Subject: [PATCH] fix: Update sde_example.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I believe there's a small mistake in this example as the equation uses σ but in the code we use θ (in two places instead of one). --- docs/src/tutorials/sde_example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/tutorials/sde_example.md b/docs/src/tutorials/sde_example.md index 6b6bcf391..902decaab 100644 --- a/docs/src/tutorials/sde_example.md +++ b/docs/src/tutorials/sde_example.md @@ -317,7 +317,7 @@ function f(du, u, p, t) end function g(du, u, p, t) du[1] = √u[2] * u[1] - du[2] = Θ * √u[2] + du[2] = σ * √u[2] end ```