Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Timing MC vs QMC. | |
Comparison of `numpy.random.Generator` (MC) vs `scipy.stats.qmc.Sobol` (QMC) | |
speed to sample points. | |
---------------- | |
MIT License | |
Copyright (c) 2022 Pamphile Tupui ROY |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Convergence of Pi using QMC. | |
--------------------------- | |
MIT License | |
Copyright (c) 2022 Pamphile Tupui ROY | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tap "hashicorp/tap" | |
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/cask-drivers" | |
tap "homebrew/core" | |
tap "osx-cross/arm" | |
tap "osx-cross/avr" | |
tap "qmk/qmk" | |
tap "romkatv/powerlevel10k" | |
# Run your GitHub Actions locally 🚀 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Poisson disk sampling in n-dimensions. | |
This is part of an effort to add Poisson disk sampling into SciPy: | |
https://github.com/scipy/scipy/pull/13918 | |
--------------------------- | |
MIT License |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Orthogonal Latin Hypercube Sampling. | |
--------------------------- | |
MIT License | |
Copyright (c) 2021 Pamphile Tupui ROY | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Centroidal Voronoi Tessellation to generate sample: Lloyd's algorithm. | |
Based on the implementation of Stéfan van der Walt | |
https://github.com/stefanv/lloyd | |
which is: | |
Copyright (c) 2021-04-21 Stéfan van der Walt https://github.com/stefanv/lloyd | |
MIT License |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Sobol' as a numpy.random.Generator. | |
.. note:: This script relies SciPy >1.7 | |
--------------------------- | |
MIT License | |
Copyright (c) 2021 Pamphile Tupui ROY |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Sampling a joint distribution with a copula. | |
A copula describes the dependency between the marginal | |
distributions. Using the copula, you can sample from a | |
joint distribution. | |
--------------------------- | |
MIT License |
NewerOlder