GoldenSequences.jl
GoldenSequences.jl copied to clipboard
Generalized golden sequences, a form of low discrepancy sequence or quasi random numbers
See https://math.stackexchange.com/questions/1934101/why-does-a-golden-angle-based-spiral-produce-evenly-distributed-points and https://gist.github.com/mschauer/d633cae52b73de08244626efc0881843 
For example the 1d`GoldenIntSequence(0x0000, 0xc291)` has full range in `UInt16`, but in fact the upper and lower bits are approximations of a 2d GoldenSequence on `UInt8`: ``` T = UInt8...
I'd like to use GoldenSequences.jl for quasi-random (low-discrepancy) sequences, but need it to work with AbstractRNG methods such as `rand`; is there a way to do this?