GoldenSequences.jl icon indicating copy to clipboard operation
GoldenSequences.jl copied to clipboard

Generalized golden sequences, a form of low discrepancy sequence or quasi random numbers

Results 3 GoldenSequences.jl issues
Sort by recently updated
recently updated
newest added

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 ![](https://user-images.githubusercontent.com/1923437/222375741-2bb91efd-8ca2-4e7f-bc07-f1ee98acaddc.png)

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?