Skip to content

Commit

Permalink
Definition
Browse files Browse the repository at this point in the history
  • Loading branch information
mschauer authored Oct 9, 2019
1 parent 2d6ad28 commit a4ecc22
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ Generalized golden sequences, a form of low discrepancy sequence or quasi random
See [Martin Roberts: The Unreasonable Effectiveness
of Quasirandom Sequences](http://extremelearning.com.au/unreasonable-effectiveness-of-quasirandom-sequences/) for background.

The `d`-dimensional sequence follows
```
x[i] = x[i-1] .+ z .% true, x[0] = x0
```
where
```
z = [ϕ[k]^(-i) for i in 1:d]
```
and `ϕ[k]` solves `ϕ[k]^(d+1) = ϕ[k] + 1` (with `ϕ[1]` the golden mean.)

Golden sequence
===============
```
Expand Down

0 comments on commit a4ecc22

Please sign in to comment.