Skip to content

Commit cffa8f1

Browse files
committed
set random seed
1 parent e0c03f1 commit cffa8f1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

docs/src/similarity.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ plot(step.([P1, P2], 6), lab=["P1" "P2"])
2222
```
2323
They sure look very *similar*, don't they? If we observed some noisy data from an experiment that look something like this
2424
```@example SIMILARITY
25+
using Random; Random.seed!(8) # hide
2526
res = step(P1, 0:0.1:6)
2627
scatter!(res.t, res.y' .+ 2 .* randn.(), lab="Noisy observed data")
2728
```

0 commit comments

Comments
 (0)