Skip to content

Commit 03fd5fa

Browse files
authored
Update stochastic_diffeq.md - fix Brownian coefficient
this changes the coefficient from 0.1 to 0.3 to match the rest of the text and code of this example.
1 parent 2202f8c commit 03fd5fa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/tutorials/stochastic_diffeq.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ where the magnitude of the noise scales with (0.3 times) the magnitude of each o
2323

2424
```math
2525
\begin{aligned}
26-
\frac{dx}{dt} &= (\sigma (y-x)) &+ 0.1x\frac{dB}{dt} \\
27-
\frac{dy}{dt} &= (x(\rho-z) - y) &+ 0.1y\frac{dB}{dt} \\
28-
\frac{dz}{dt} &= (xy - \beta z) &+ 0.1z\frac{dB}{dt} \\
26+
\frac{dx}{dt} &= (\sigma (y-x)) &+ 0.3x\frac{dB}{dt} \\
27+
\frac{dy}{dt} &= (x(\rho-z) - y) &+ 0.3y\frac{dB}{dt} \\
28+
\frac{dz}{dt} &= (xy - \beta z) &+ 0.3z\frac{dB}{dt} \\
2929
\end{aligned}
3030
```
3131

0 commit comments

Comments
 (0)