sobol_seq icon indicating copy to clipboard operation
sobol_seq copied to clipboard

python implementation of Sobol' sequence generator

Results 1 sobol_seq issues
Sort by recently updated
recently updated
newest added

For those looking to upgrade the function to a maintained package: ```python def get_sequence_using_sobol_seq(n_samples, d): from sobol_seq import i4_sobol_generate return i4_sobol_generate(d, n_samples).flatten() ``` is equivalent to ```python def get_sequence_using_scipy(n_samples, d):...