Skip to content

Commit 31e6042

Browse files
committed
little things
1 parent d975fa5 commit 31e6042

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ functionality should check out [DifferentialEquations.jl](https://github.com/Sci
1111

1212
## API
1313

14-
StochasticDiffEq.jl is part of the JuliaDiffEq common interface, but can be used independently of DifferentialEquations.jl. The only requirement is that the user passes an StochasticDiffEq.jl algorithm to `solve`. For example, we can solve the [SDE tutorial from the docs](https://diffeq.sciml.ai/stable/tutorials/sde_example/) using the `SRIW1()` algorithm:
14+
StochasticDiffEq.jl is part of the JuliaDiffEq common interface, but can be used independently of [DifferentialEquations.jl](https://github.com/SciML/DifferentialEquations.jl). The only requirement is that the user passes an StochasticDiffEq.jl algorithm to `solve`. For example, we can solve the [SDE tutorial from the docs](https://diffeq.sciml.ai/stable/tutorials/sde_example/) using the `SRIW1()` algorithm:
1515

1616
```julia
1717
using StochasticDiffEq
@@ -66,7 +66,7 @@ end
6666
prob = SDEProblem(f,g,ones(2),(0.0,1.0),noise_rate_prototype=zeros(2,4))
6767
```
6868

69-
Colored noise can be set using [an `AbstractNoiseProcess`](https://diffeq.sciml.ai/stable/features/noise_process/). For example, we can set the underlying noise process to a `GeometricBrownian` via:
69+
Colored noise can be set using [an `AbstractNoiseProcess`](https://diffeq.sciml.ai/stable/features/noise_process/). For example, we can set the underlying noise process to a `GeometricBrownianMotionProcess` via:
7070

7171
```julia
7272
μ = 1.0

0 commit comments

Comments
 (0)