From ee1a7ceb117b4c142b06aedd468a5ba5657bc7b8 Mon Sep 17 00:00:00 2001 From: mkl_random-doc-bot Date: Fri, 11 Oct 2024 15:25:34 +0000 Subject: [PATCH] Deploy: 0df7d04b67c54a6a089a6f42b4265dfc2c57f430 --- _modules/index.html | 4 ++-- _static/basic.css | 15 ++----------- _static/doctools.js | 7 ------ _static/language_data.js | 7 ------ _static/searchtools.js | 38 ++++++++++++++++++++++----------- genindex.html | 4 ++-- how_to.html | 4 ++-- index.html | 4 ++-- maintenance/index.html | 4 ++-- reference/api.html | 4 ++-- reference/ars5.html | 4 ++-- reference/index.html | 4 ++-- reference/mcg31.html | 4 ++-- reference/mcg59.html | 4 ++-- reference/mrg32k3a.html | 4 ++-- reference/mt19937.html | 4 ++-- reference/mt2203.html | 4 ++-- reference/nondeterministic.html | 4 ++-- reference/philox4x32x10.html | 4 ++-- reference/r250.html | 4 ++-- reference/sfmt19937.html | 4 ++-- reference/wichmann_hill.html | 4 ++-- search.html | 4 ++-- searchindex.js | 2 +- tutorials.html | 4 ++-- 25 files changed, 68 insertions(+), 81 deletions(-) diff --git a/_modules/index.html b/_modules/index.html index 24f536c..6eef89b 100644 --- a/_modules/index.html +++ b/_modules/index.html @@ -4,7 +4,7 @@ - + Overview: module code - mkl_random 1.2.7 documentation @@ -286,7 +286,7 @@

All modules for which code is available

- + diff --git a/_static/basic.css b/_static/basic.css index f316efc..7ebbd6d 100644 --- a/_static/basic.css +++ b/_static/basic.css @@ -1,12 +1,5 @@ /* - * basic.css - * ~~~~~~~~~ - * * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * */ /* -- main layout ----------------------------------------------------------- */ @@ -115,15 +108,11 @@ img { /* -- search page ----------------------------------------------------------- */ ul.search { - margin: 10px 0 0 20px; - padding: 0; + margin-top: 10px; } ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; + padding: 5px 0; } ul.search li a { diff --git a/_static/doctools.js b/_static/doctools.js index 4d67807..0398ebb 100644 --- a/_static/doctools.js +++ b/_static/doctools.js @@ -1,12 +1,5 @@ /* - * doctools.js - * ~~~~~~~~~~~ - * * Base JavaScript utilities for all Sphinx HTML documentation. - * - * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * */ "use strict"; diff --git a/_static/language_data.js b/_static/language_data.js index 367b8ed..c7fe6c6 100644 --- a/_static/language_data.js +++ b/_static/language_data.js @@ -1,13 +1,6 @@ /* - * language_data.js - * ~~~~~~~~~~~~~~~~ - * * This script contains the language-specific data used by searchtools.js, * namely the list of stopwords, stemmer, scorer and splitter. - * - * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * */ var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"]; diff --git a/_static/searchtools.js b/_static/searchtools.js index b08d58c..2c774d1 100644 --- a/_static/searchtools.js +++ b/_static/searchtools.js @@ -1,12 +1,5 @@ /* - * searchtools.js - * ~~~~~~~~~~~~~~~~ - * * Sphinx JavaScript utilities for the full-text search. - * - * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * */ "use strict"; @@ -20,7 +13,7 @@ if (typeof Scorer === "undefined") { // and returns the new score. /* score: result => { - const [docname, title, anchor, descr, score, filename] = result + const [docname, title, anchor, descr, score, filename, kind] = result return score }, */ @@ -47,6 +40,14 @@ if (typeof Scorer === "undefined") { }; } +// Global search result kind enum, used by themes to style search results. +class SearchResultKind { + static get index() { return "index"; } + static get object() { return "object"; } + static get text() { return "text"; } + static get title() { return "title"; } +} + const _removeChildren = (element) => { while (element && element.lastChild) element.removeChild(element.lastChild); }; @@ -64,9 +65,13 @@ const _displayItem = (item, searchTerms, highlightTerms) => { const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY; const contentRoot = document.documentElement.dataset.content_root; - const [docName, title, anchor, descr, score, _filename] = item; + const [docName, title, anchor, descr, score, _filename, kind] = item; let listItem = document.createElement("li"); + // Add a class representing the item's type: + // can be used by a theme's CSS selector for styling + // See SearchResultKind for the class names. + listItem.classList.add(`kind-${kind}`); let requestUrl; let linkUrl; if (docBuilder === "dirhtml") { @@ -115,8 +120,10 @@ const _finishSearch = (resultCount) => { "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories." ); else - Search.status.innerText = _( - "Search finished, found ${resultCount} page(s) matching the search query." + Search.status.innerText = Documentation.ngettext( + "Search finished, found one page matching the search query.", + "Search finished, found ${resultCount} pages matching the search query.", + resultCount, ).replace('${resultCount}', resultCount); }; const _displayNextItem = ( @@ -138,7 +145,7 @@ const _displayNextItem = ( else _finishSearch(resultCount); }; // Helper function used by query() to order search results. -// Each input is an array of [docname, title, anchor, descr, score, filename]. +// Each input is an array of [docname, title, anchor, descr, score, filename, kind]. // Order the results by score (in opposite order of appearance, since the // `_displayNextItem` function uses pop() to retrieve items) and then alphabetically. const _orderResultsByScoreThenName = (a, b) => { @@ -248,6 +255,7 @@ const Search = { searchSummary.classList.add("search-summary"); searchSummary.innerText = ""; const searchList = document.createElement("ul"); + searchList.setAttribute("role", "list"); searchList.classList.add("search"); const out = document.getElementById("search-results"); @@ -318,7 +326,7 @@ const Search = { const indexEntries = Search._index.indexentries; // Collect multiple result groups to be sorted separately and then ordered. - // Each is an array of [docname, title, anchor, descr, score, filename]. + // Each is an array of [docname, title, anchor, descr, score, filename, kind]. const normalResults = []; const nonMainIndexResults = []; @@ -337,6 +345,7 @@ const Search = { null, score + boost, filenames[file], + SearchResultKind.title, ]); } } @@ -354,6 +363,7 @@ const Search = { null, score, filenames[file], + SearchResultKind.index, ]; if (isMain) { normalResults.push(result); @@ -475,6 +485,7 @@ const Search = { descr, score, filenames[match[0]], + SearchResultKind.object, ]); }; Object.keys(objects).forEach((prefix) => @@ -585,6 +596,7 @@ const Search = { null, score, filenames[file], + SearchResultKind.text, ]); } return results; diff --git a/genindex.html b/genindex.html index fec660e..81c01fc 100644 --- a/genindex.html +++ b/genindex.html @@ -4,7 +4,7 @@ - Index - mkl_random 1.2.7 documentation + Index - mkl_random 1.2.7 documentation @@ -568,7 +568,7 @@

Z

- + diff --git a/how_to.html b/how_to.html index dda7c6b..957111e 100644 --- a/how_to.html +++ b/how_to.html @@ -5,7 +5,7 @@ - + How-to Guides - mkl_random 1.2.7 documentation @@ -417,7 +417,7 @@

Stochastic computations in parallel with multiprocessing - + diff --git a/index.html b/index.html index 8c30b71..d245f4f 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ - + mkl_random 1.2.7 documentation @@ -364,7 +364,7 @@

- + diff --git a/maintenance/index.html b/maintenance/index.html index 8e9a04f..485b157 100644 --- a/maintenance/index.html +++ b/maintenance/index.html @@ -5,7 +5,7 @@ - + Contributing - mkl_random 1.2.7 documentation @@ -348,7 +348,7 @@

Contributing - + diff --git a/reference/api.html b/reference/api.html index 712cc1a..ed11f1b 100644 --- a/reference/api.html +++ b/reference/api.html @@ -5,7 +5,7 @@ - + Class RandomState - mkl_random 1.2.7 documentation @@ -3791,7 +3791,7 @@ - + diff --git a/reference/ars5.html b/reference/ars5.html index 401e504..e8ef828 100644 --- a/reference/ars5.html +++ b/reference/ars5.html @@ -5,7 +5,7 @@ - + ARS5 brng - mkl_random 1.2.7 documentation @@ -348,7 +348,7 @@ - + diff --git a/reference/index.html b/reference/index.html index 7556497..d2ffbff 100644 --- a/reference/index.html +++ b/reference/index.html @@ -5,7 +5,7 @@ - + mkl_random APIs - mkl_random 1.2.7 documentation @@ -331,7 +331,7 @@

- + diff --git a/reference/mcg31.html b/reference/mcg31.html index c35e27f..30bc843 100644 --- a/reference/mcg31.html +++ b/reference/mcg31.html @@ -5,7 +5,7 @@ - + MCG31 brng - mkl_random 1.2.7 documentation @@ -348,7 +348,7 @@ - + diff --git a/reference/mcg59.html b/reference/mcg59.html index 0ead035..fe8bc13 100644 --- a/reference/mcg59.html +++ b/reference/mcg59.html @@ -5,7 +5,7 @@ - + MCG59 brng - mkl_random 1.2.7 documentation @@ -348,7 +348,7 @@ - + diff --git a/reference/mrg32k3a.html b/reference/mrg32k3a.html index d4e0c81..16cdb0c 100644 --- a/reference/mrg32k3a.html +++ b/reference/mrg32k3a.html @@ -5,7 +5,7 @@ - + MRG32k3a brng - mkl_random 1.2.7 documentation @@ -348,7 +348,7 @@ - + diff --git a/reference/mt19937.html b/reference/mt19937.html index 9d6b41b..4857986 100644 --- a/reference/mt19937.html +++ b/reference/mt19937.html @@ -5,7 +5,7 @@ - + MT19937 brng - mkl_random 1.2.7 documentation @@ -346,7 +346,7 @@ - + diff --git a/reference/mt2203.html b/reference/mt2203.html index abc03cf..9948926 100644 --- a/reference/mt2203.html +++ b/reference/mt2203.html @@ -5,7 +5,7 @@ - + MT2203 brng - mkl_random 1.2.7 documentation @@ -359,7 +359,7 @@ - + diff --git a/reference/nondeterministic.html b/reference/nondeterministic.html index b36f3e6..9882cfe 100644 --- a/reference/nondeterministic.html +++ b/reference/nondeterministic.html @@ -5,7 +5,7 @@ - + Nondeterm brng - mkl_random 1.2.7 documentation @@ -330,7 +330,7 @@ - + diff --git a/reference/philox4x32x10.html b/reference/philox4x32x10.html index 49ed3e7..fdbe2ea 100644 --- a/reference/philox4x32x10.html +++ b/reference/philox4x32x10.html @@ -5,7 +5,7 @@ - + Philox4x32x10 brng - mkl_random 1.2.7 documentation @@ -348,7 +348,7 @@ - + diff --git a/reference/r250.html b/reference/r250.html index d1e7bc9..f65404d 100644 --- a/reference/r250.html +++ b/reference/r250.html @@ -5,7 +5,7 @@ - + R250 brng - mkl_random 1.2.7 documentation @@ -348,7 +348,7 @@ - + diff --git a/reference/sfmt19937.html b/reference/sfmt19937.html index 5ae8327..775f771 100644 --- a/reference/sfmt19937.html +++ b/reference/sfmt19937.html @@ -5,7 +5,7 @@ - + SFMT19937 brng - mkl_random 1.2.7 documentation @@ -348,7 +348,7 @@ - + diff --git a/reference/wichmann_hill.html b/reference/wichmann_hill.html index 4d404e1..7e2a06e 100644 --- a/reference/wichmann_hill.html +++ b/reference/wichmann_hill.html @@ -5,7 +5,7 @@ - + Wichmann-Hill brng - mkl_random 1.2.7 documentation @@ -360,7 +360,7 @@ - + diff --git a/search.html b/search.html index e137b85..753bbae 100644 --- a/search.html +++ b/search.html @@ -5,7 +5,7 @@ - + Search - mkl_random 1.2.7 documentation @@ -296,7 +296,7 @@ - + diff --git a/searchindex.js b/searchindex.js index 0c0c9c7..393b9a5 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"ARS5 brng": [[4, null]], "Beginner\u2019s guide": [[16, null]], "Class RandomState": [[3, null]], "Contributing": [[2, null]], "First steps": [[16, "first-steps"]], "How to save and resume long computation": [[0, "how-to-save-and-resume-long-computation"]], "How-to Guides": [[0, null]], "Installation": [[16, "installation"]], "MCG31 brng": [[6, null]], "MCG59 brng": [[7, null]], "MRG32k3a brng": [[8, null]], "MT19937 brng": [[9, null]], "MT2203 brng": [[10, null]], "Nondeterm brng": [[11, null]], "Philox4x32x10 brng": [[12, null]], "Pseudo-random vs. non-deterministic generators": [[16, "pseudo-random-vs-non-deterministic-generators"]], "R250 brng": [[13, null]], "SFMT19937 brng": [[14, null]], "Stochastic computations in parallel with multiprocessing": [[0, "stochastic-computations-in-parallel-with-multiprocessing"]], "Wichmann-Hill brng": [[15, null]], "mkl_random APIs": [[5, null]], "mkl_random: random numbers fast": [[1, null]]}, "docnames": ["how_to", "index", "maintenance/index", "reference/api", "reference/ars5", "reference/index", "reference/mcg31", "reference/mcg59", "reference/mrg32k3a", "reference/mt19937", "reference/mt2203", "reference/nondeterministic", "reference/philox4x32x10", "reference/r250", "reference/sfmt19937", "reference/wichmann_hill", "tutorials"], "envversion": {"sphinx": 63, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1}, "filenames": ["how_to.rst", "index.rst", "maintenance/index.rst", "reference/api.rst", "reference/ars5.rst", "reference/index.rst", "reference/mcg31.rst", "reference/mcg59.rst", "reference/mrg32k3a.rst", "reference/mt19937.rst", "reference/mt2203.rst", "reference/nondeterministic.rst", "reference/philox4x32x10.rst", "reference/r250.rst", "reference/sfmt19937.rst", "reference/wichmann_hill.rst", "tutorials.rst"], "indexentries": {"beta() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.beta", false]], "binomial() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.binomial", false]], "bytes() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.bytes", false]], "chisquare() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.chisquare", false]], "choice() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.choice", false]], "dirichlet() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.dirichlet", false]], "exponential() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.exponential", false]], "f() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.f", false]], "gamma() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.gamma", false]], "geometric() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.geometric", false]], "get_state() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.get_state", false]], "gumbel() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.gumbel", false]], "hypergeometric() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.hypergeometric", false]], "laplace() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.laplace", false]], "leapfrog()": [[0, "leapfrog", false]], "leapfrog() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.leapfrog", false]], "logistic() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.logistic", false]], "lognormal() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.lognormal", false]], "logseries() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.logseries", false]], "multinomial() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.multinomial", false]], "multinormal_cholesky() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.multinormal_cholesky", false]], "multivariate_normal() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.multivariate_normal", false]], "negative_binomial() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.negative_binomial", false]], "noncentral_chisquare() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.noncentral_chisquare", false]], "noncentral_f() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.noncentral_f", false]], "normal() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.normal", false]], "pareto() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.pareto", false]], "permutation() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.permutation", false]], "poisson() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.poisson", false]], "power() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.power", false]], "rand() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.rand", false]], "randint() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.randint", false]], "randint_untyped() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.randint_untyped", false]], "randn() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.randn", false]], "random_integers() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.random_integers", false]], "random_sample() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.random_sample", false]], "randomstate (class in mkl_random)": [[3, "mkl_random.RandomState", false]], "rayleigh() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.rayleigh", false]], "seed() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.seed", false]], "set_state() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.set_state", false]], "shuffle() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.shuffle", false]], "skipahead()": [[0, "skipahead", false]], "skipahead() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.skipahead", false]], "standard_cauchy() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.standard_cauchy", false]], "standard_exponential() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.standard_exponential", false]], "standard_gamma() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.standard_gamma", false]], "standard_normal() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.standard_normal", false]], "standard_t() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.standard_t", false]], "tomaxint() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.tomaxint", false]], "triangular() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.triangular", false]], "uniform() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.uniform", false]], "vonmises() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.vonmises", false]], "wald() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.wald", false]], "weibull() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.weibull", false]], "zipf() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.zipf", false]]}, "objects": {"": [[0, 0, 1, "", "leapfrog"], [0, 0, 1, "", "skipahead"]], "mkl_random": [[3, 1, 1, "", "RandomState"]], "mkl_random.RandomState": [[3, 0, 1, "", "beta"], [3, 0, 1, "", "binomial"], [3, 0, 1, "", "bytes"], [3, 0, 1, "", "chisquare"], [3, 0, 1, "", "choice"], [3, 0, 1, "", "dirichlet"], [3, 0, 1, "", "exponential"], [3, 0, 1, "", "f"], [3, 0, 1, "", "gamma"], [3, 0, 1, "", "geometric"], [3, 0, 1, "", "get_state"], [3, 0, 1, "", "gumbel"], [3, 0, 1, "", "hypergeometric"], [3, 0, 1, "", "laplace"], [3, 0, 1, "", "leapfrog"], [3, 0, 1, "", "logistic"], [3, 0, 1, "", "lognormal"], [3, 0, 1, "", "logseries"], [3, 0, 1, "", "multinomial"], [3, 0, 1, "", "multinormal_cholesky"], [3, 0, 1, "", "multivariate_normal"], [3, 0, 1, "", "negative_binomial"], [3, 0, 1, "", "noncentral_chisquare"], [3, 0, 1, "", "noncentral_f"], [3, 0, 1, "", "normal"], [3, 0, 1, "", "pareto"], [3, 0, 1, "", "permutation"], [3, 0, 1, "", "poisson"], [3, 0, 1, "", "power"], [3, 0, 1, "", "rand"], [3, 0, 1, "", "randint"], [3, 0, 1, "", "randint_untyped"], [3, 0, 1, "", "randn"], [3, 0, 1, "", "random_integers"], [3, 0, 1, "", "random_sample"], [3, 0, 1, "", "rayleigh"], [3, 0, 1, "", "seed"], [3, 0, 1, "", "set_state"], [3, 0, 1, "", "shuffle"], [3, 0, 1, "", "skipahead"], [3, 0, 1, "", "standard_cauchy"], [3, 0, 1, "", "standard_exponential"], [3, 0, 1, "", "standard_gamma"], [3, 0, 1, "", "standard_normal"], [3, 0, 1, "", "standard_t"], [3, 0, 1, "", "tomaxint"], [3, 0, 1, "", "triangular"], [3, 0, 1, "", "uniform"], [3, 0, 1, "", "vonmises"], [3, 0, 1, "", "wald"], [3, 0, 1, "", "weibull"], [3, 0, 1, "", "zipf"]]}, "objnames": {"0": ["py", "method", "Python method"], "1": ["py", "class", "Python class"]}, "objtypes": {"0": "py:method", "1": "py:class"}, "terms": {"": [3, 5, 15], "0": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "000": 3, "0000001": 3, "003": 3, "00867716": 3, "009": 3, "0090699999999999999": 3, "00950034": 3, "01": 3, "087300000000000003": 3, "09": 3, "1": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "10": [3, 9, 16], "100": [0, 3], "1000": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "10000": 3, "100000": 3, "1000000": 3, "103": [5, 13], "11": 3, "1132489760": 6, "1142": 3, "11659149": 3, "1170048599": 3, "12": 3, "1232221373727": 3, "1234": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "125": 3, "132": 3, "133": 3, "1357913": 0, "13710533": 3, "14": 3, "14022471": 3, "14167732": 16, "1479324245": 3, "148": 3, "15": 3, "151": 3, "16": 3, "1600360186": 3, "1601631370": 3, "1654503": 3, "17": 3, "1774": 3, "187": 3, "1871712945": 3, "1896": 3, "1908": 3, "1923875335537315": 3, "1932": 3, "1939": 3, "1943": 3, "1947757578": 3, "195": 3, "1951": 3, "1956": 3, "1958": 3, "1964": 3, "1970": 3, "1972": 3, "1988": 3, "1991": 3, "1994": 3, "1999": 3, "1_000_000": [10, 15, 16], "2": [3, 6, 14], "20": 3, "200": [3, 15], "20000": 3, "2001": 3, "2002": 3, "2003": 3, "2007": 3, "2147483647": 3, "23": 3, "23204345": 3, "25": 3, "250": [5, 13], "25528411": 3, "26": 3, "27": 3, "273": [5, 15], "29718677": 3, "2_i": 3, "2_k": 3, "2i": 3, "2nd": 3, "2x": 3, "3": [3, 4, 6, 7, 8, 10, 12, 13, 14, 15, 16], "30": 3, "30220482": 3, "31": [3, 5, 6], "32": [3, 5, 13], "34889999999999999": 3, "35": 3, "36": 3, "37601032": 3, "38": 3, "38672696": 3, "38885": 3, "39924804": 3, "3rd": 3, "3x8000": 3, "4": [3, 9, 16], "40": 3, "42": 3, "4685006": 3, "47": 3, "47108547995356098": 3, "48": 3, "49": 3, "49313049": 3, "49401501": 3, "49876311": 3, "4th": 3, "4x32x10": 12, "5": [0, 3, 10, 15], "50": 3, "500": 3, "5000": 3, "51": 3, "52338984": 3, "5260": 3, "54323428": 3, "5470": 3, "5640": 3, "567": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "57": 3, "57721": 3, "58": 3, "59": [5, 7], "6": [3, 4, 6, 7, 8, 10, 12, 13, 14, 15, 16], "6023": 10, "6024": [5, 10], "607": 3, "6180": 3, "61988120985": 3, "62": 3, "62318272": 3, "624": 3, "625": 3, "636363636364": 3, "6390": 3, "6515": 3, "6753": 3, "6805": 3, "68456316": 3, "6888893": 3, "7": 3, "739731006": 3, "7515": 3, "75224494": 3, "752307660": 3, "7725": 3, "777": [0, 10, 15], "78096262": 3, "79479508": 3, "8": [3, 16], "80": 3, "8000": 3, "81814867": 3, "82": 3, "8230": 3, "83": 3, "84057254": 3, "86": 3, "86820401": 3, "8770": 3, "89": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "89086505": 3, "89920014": 3, "9": 3, "94909878": 3, "95": 3, "96360618": 3, "99": 3, "99091858": 3, "99149989": 3, "99394529": 3, "9th": 3, "A": [2, 3], "As": 3, "For": 3, "If": 3, "In": 3, "It": 3, "Its": 3, "NOT": 3, "No": 3, "Of": 3, "On": 3, "Such": 3, "The": [0, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16], "Then": 3, "These": [3, 16], "To": [0, 1, 2, 3], "With": 3, "_": 3, "_i": 3, "_seed_": 16, "aa_milne_arr": 3, "ab": 3, "abbt": 3, "about": 3, "abov": [3, 16], "abramowitz": 3, "absolut": 3, "ac": 3, "academ": 3, "accept": [3, 16], "access": 3, "accomplish": 0, "accord": 3, "account": 3, "achiev": 3, "across": 3, "act": 3, "actual": 3, "actuari": 3, "ad": 3, "add": [1, 3], "addit": 3, "address": [10, 15], "advanc": 0, "advantag": 3, "ae": [4, 5], "aerodynam": 3, "affect": 3, "after": [3, 16], "again": 3, "against": 3, "ahead": [0, 3], "al": 3, "algorithm": [3, 4, 5, 10, 15, 16], "alia": 3, "align": 3, "all": 3, "allow": [0, 3], "along": 3, "alpha": 3, "alpha_i": 3, "alreadi": 16, "also": [0, 2, 3, 5, 16], "alter": 3, "altern": 3, "although": 3, "alwai": 3, "american": 3, "an": [2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "anaconda": 16, "analog": 3, "analogu": 3, "analysi": 3, "angl": 3, "ani": 3, "anim": 3, "anova": 3, "anstalt": 3, "answer": 3, "anywher": 3, "appear": 3, "append": 3, "appli": 3, "applic": 3, "appreci": 2, "approach": 3, "appropri": 3, "approx": 3, "approxim": 3, "ar": [1, 2, 3, 10, 15], "arang": 3, "arbitrari": 3, "area": 3, "argument": [0, 3, 5], "aris": 3, "arr": 3, "arrai": 3, "arrang": 3, "array_equ": 0, "array_lik": 3, "ars5": [0, 3, 5], "asm": 3, "asp": 3, "assert": 0, "assign": 0, "associ": 3, "assum": 3, "assumpt": [0, 3], "asymptot": 3, "attempt": 3, "austria": 3, "automat": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "auxillar": 3, "avail": [1, 3, 16], "averag": 3, "avoid": 0, "awai": 3, "awar": 3, "ax": 3, "axi": 3, "b": 3, "backward": [3, 16], "bad": 3, "ball": 3, "barh": 3, "base": [3, 4, 5, 12], "basel": 3, "basic": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "batch_siz": 16, "batteri": 16, "bayesian": 3, "becam": 3, "becaus": 3, "becom": 3, "been": 3, "befor": 3, "begin": [0, 3, 16], "beginn": 1, "behavior": 3, "being": 3, "bell": 3, "below": 3, "bernoulli": 3, "besid": 3, "bessel": 3, "beta": 3, "better": 3, "between": 3, "bias": 3, "bigl": 3, "bigr": 3, "bin": 3, "binom": 3, "binomi": [3, 9], "binomial_distribut": 3, "binomialdistribut": 3, "biodivers": 3, "bioscienc": 3, "biostatist": 3, "birkhaus": 3, "bit": [3, 5, 6, 7, 13], "bitgener": 16, "black": 3, "blood": 3, "bogden": 3, "bomb": 3, "bool": 3, "boolean": 3, "born": 3, "both": [2, 3], "bound": 3, "boundari": 3, "boxmul": 3, "boxmuller2": 3, "bradford": 3, "break": 0, "breweri": 3, "brighton": 3, "brng": [0, 3, 5], "broadcast": 3, "broaden": 3, "brownian": 3, "bsampl": 9, "build": 2, "buza": 3, "byte": 3, "byteord": 3, "c": [3, 16], "c_": 3, "c_val": 3, "calcul": 3, "call": [3, 16], "cam": 3, "cambridg": 3, "can": [2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "car": 3, "care": 0, "carlo": 16, "case": 3, "cat": 3, "cauchi": 3, "cauchy_distribut": 3, "cauchydistribut": 3, "caveat": 16, "cdotp": 3, "center": 3, "centr": 3, "central": [3, 16], "ch": 3, "chanc": 3, "channel": 16, "chapter": 3, "characterist": 3, "check": [1, 16], "chess": 3, "chhikara": 3, "chi": 3, "children": 3, "chisquar": 3, "choic": 3, "choleski": 3, "choos": [0, 3], "chosen": [3, 5], "christian": 3, "christoph": 3, "circl": 3, "circular": 3, "cite": 3, "claim": 3, "class": [1, 5, 16], "classic": 3, "classif": 3, "clock": [3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "clone": 2, "close": 3, "clue": 3, "co": 3, "codebas": 1, "coin": 3, "color": 3, "columbia": 3, "com": [2, 3, 16], "combin": [5, 8, 15], "come": 3, "common": [1, 3], "commonli": 3, "compani": 3, "compar": 3, "comparison": 3, "compat": [3, 16], "competitor": 3, "compil": 2, "compon": 3, "compromis": 0, "comput": [3, 16], "conda": 16, "condit": 3, "congruenti": [5, 6, 7, 15], "conjug": 3, "consequ": 3, "consid": 3, "consist": 3, "construct": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "constructor": [5, 11], "consum": 0, "contain": [1, 3], "content": 3, "continu": [0, 1, 3, 16], "contribut": 1, "contributor": 1, "control": 3, "conveni": 3, "convert": 3, "coordin": 3, "copi": 3, "corbet": 3, "correct": 0, "count": 3, "counter": [4, 5, 12], "cours": 3, "cov": 3, "covari": 3, "cover": 3, "coverag": 3, "crc": 3, "creat": [3, 16], "culver": 3, "cumul": 3, "current": 3, "curv": 3, "cut": 3, "cycl": 0, "cython": 2, "d": 3, "d0": 3, "d1": 3, "d2": 3, "d3": 3, "d_i": 3, "daili": 3, "dalgaard": 3, "dali": 3, "data": 3, "dataplot": 3, "david": 3, "ddof": 3, "de": 3, "decai": 3, "decemb": 3, "dedic": 16, "def": 3, "default": [3, 5, 16], "defin": 3, "definit": 3, "deg": 3, "degre": 3, "delhi": 3, "demonstr": 3, "denomin": 3, "denot": 3, "densiti": 3, "depend": [2, 3], "deprec": 3, "deriv": 3, "describ": 3, "descript": 1, "design": [3, 10, 15, 16], "desir": 3, "detail": [0, 1, 3], "determin": 3, "determinist": [1, 3, 5, 11], "dev": 3, "develop": [2, 3], "deviat": 3, "devic": [5, 11], "df": 3, "dfden": 3, "dfnum": 3, "diabet": 3, "diagon": 3, "dice": 3, "die": 3, "diehard": 16, "diff": 3, "differ": [0, 3, 5, 10, 15, 16], "dimens": 3, "dimension": 3, "directli": 3, "dirichlet": 3, "dirichlet_distribut": 3, "discret": [1, 3, 4, 6, 7, 8, 10, 12, 13, 14, 15], "dispers": 3, "displai": 3, "distanc": 3, "distibut": [4, 6, 7, 8, 10, 12, 13, 14, 15], "distribut": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16], "disturb": 3, "div898": 3, "divers": 3, "divisor": 3, "dn": 3, "do": [0, 3], "doc": 2, "document": [2, 3], "doe": [0, 3, 16], "done": 16, "doubl": 3, "dover": 3, "down": 0, "download": 3, "draw": [0, 3, 16], "drawn": [0, 3], "drill": 3, "driven": 3, "dsum": 3, "dt": 3, "dtype": 3, "dublin": 3, "duda": 3, "due": [0, 3], "dump": 0, "dure": 3, "e": [3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "each": [0, 3, 10, 15], "earli": 3, "earlier": 3, "easi": 16, "east": 3, "ecologi": 3, "econom": 3, "economi": 3, "economist": 3, "ecosystem": 16, "ed": 3, "eda": 3, "eda3663": 3, "eda3666": 3, "edit": 3, "edler": 3, "effect": 3, "effici": 3, "eh": 3, "either": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "electron": 3, "element": 3, "elementari": 3, "elo": 3, "elsewher": 3, "emil": 3, "emul": 16, "en": 3, "encrypt": [4, 5], "end": 3, "energi": 3, "engin": [3, 5], "ensur": 0, "entri": 3, "entropi": 16, "environ": 2, "epidemiologi": 3, "equal": [0, 3], "equival": 3, "eric": 3, "error": 3, "esampl": [4, 6, 7, 8, 11, 12, 13, 14], "estim": [3, 16], "et": 3, "etc": 3, "ethz": 3, "evenli": 3, "event": 3, "exactli": 3, "exampl": [0, 3, 5, 10, 15, 16], "exce": 3, "except": [0, 3], "exclud": 3, "exclus": 3, "execut": 16, "exist": 3, "exp": 3, "expect": 3, "experi": 3, "explor": 3, "expon": 3, "exponenti": [3, 14], "exponential_distribut": 3, "export": 2, "expos": [1, 3, 5], "express": 3, "extrem": 3, "f": 3, "factor": 3, "fail": 3, "failur": 3, "fals": 3, "famili": 0, "familiar": 16, "far": 3, "fast": 3, "fat": 3, "fatter": 3, "feder": 3, "feedback": [5, 13], "fide": 3, "field": 3, "fifth": 3, "figur": 3, "fill": 3, "filliben": 3, "financ": 3, "finit": 16, "first": 3, "fisher": 3, "fit": 3, "five": 3, "fix": 0, "fled": 3, "flip": 3, "float": 3, "flood": 3, "fluid": 3, "folder": [0, 10, 15], "folk": 3, "follow": [3, 5, 16], "forg": 16, "fork": 2, "forlag": 3, "form": 3, "formula": 3, "found": [2, 3], "four": 3, "frac": 3, "fraction": 3, "franci": 3, "frechet": 3, "free": 2, "freedom": 3, "frequenc": 3, "frequent": 3, "frog": [0, 3], "from": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "fulfil": 3, "full": 3, "function": 3, "g": [2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "gamma": [0, 3, 4, 6, 7, 8, 10, 12, 13, 14, 15], "gammadistribut": 3, "gauss": 3, "gaussian": [3, 9], "gener": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "generalis": 3, "generalstaben": 3, "genextrem": 3, "genpareto": 3, "geometr": 3, "georg": 3, "german": 3, "get": 3, "get_stat": 3, "gev": 3, "gfsr": [5, 13], "gisset": 3, "git": 2, "github": [0, 2, 10, 15], "give": 3, "given": 3, "glantz": 3, "glucos": 3, "gnu": 2, "good": 3, "gov": 3, "grab": 3, "graph": 3, "greater": 3, "group": 3, "gsampl": [4, 6, 7, 8, 10, 12, 13, 14, 15], "guarante": 3, "guid": 1, "guidelin": 1, "guin": 3, "gumbel": 3, "gumbel_l": 3, "gumbel_r": 3, "h": [2, 3], "ha": [3, 16], "had": 3, "half": 3, "hand": [1, 3], "handbook": 3, "handlingar": 3, "happen": 3, "hardwar": [3, 5, 11, 16], "harmon": 3, "hart": 3, "harvard": 3, "have": [3, 16], "he": 3, "header": 2, "health": 3, "heavi": 3, "heavier": 3, "heckert": 3, "height": 3, "henc": 3, "here": [3, 16], "high": 3, "higher": 3, "highest": 3, "hill": [3, 5], "hist": 3, "histogram": 3, "hold": 3, "holla": 3, "how": [2, 3], "howev": 3, "htm": 3, "html": [2, 3], "http": [2, 3, 16], "hungari": 3, "hunt": 3, "hydrologi": 3, "hyperbol": 3, "hypergeom": 3, "hypergeometr": 3, "hypergeometric_distribut": 3, "hypergeometricdistribut": 3, "hypothesi": 3, "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "i0": 3, "i_0": 3, "icdf": 3, "icpx": 2, "ident": 3, "identifi": 0, "ignor": [3, 11], "ii": 3, "iii": 3, "iinfo": 3, "ij": 3, "ill": 3, "implement": 3, "impli": [3, 16], "import": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "improv": 1, "inappropri": 3, "includ": [2, 3], "inclus": 3, "increas": 3, "independ": [0, 3, 10, 15, 16], "index": [3, 16], "indic": 3, "indistinguish": 0, "indistunguish": 0, "individu": [3, 10, 15], "infer": 3, "infin": 3, "infinit": 3, "influenc": 3, "inform": 3, "infti": 3, "ingeniorsvetenskapsakademien": 3, "initi": [0, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "input": 3, "instal": 2, "instanc": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "instead": 3, "institut": 3, "insur": 3, "int": 3, "int64": 3, "int_0": 3, "int_lik": 3, "intak": 3, "integ": [0, 3, 16], "integr": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "intel": [1, 2, 3, 16], "intelpython": 2, "interest": [3, 16], "interfac": 3, "interleav": 0, "intern": [0, 3, 16], "interv": 3, "introduc": 16, "introduct": 1, "introductori": 3, "invers": 3, "isampl": [4, 6, 7, 8, 10, 12, 13, 14, 15], "issu": 3, "italian": 3, "item": 3, "itl": 3, "its": [1, 2, 3, 16], "itself": 3, "j": 3, "jame": 3, "johnson": 3, "journal": 3, "jr": 3, "juliu": 3, "june": 3, "just": 3, "k": [0, 3], "kappa": 3, "keep": 3, "kei": [1, 3], "kernel": 1, "keyword": [3, 5], "kill": 3, "kingslei": 3, "kj": 3, "kleiber": 3, "know": 3, "knowledg": 3, "known": [3, 5, 16], "kotz": 3, "l": 3, "lam": 3, "lambda": 3, "land": 3, "languag": 3, "laplac": 3, "laplace_distribut": 3, "laplacedistribut": 3, "larg": 3, "larger": 3, "largest": 3, "last": 3, "later": 3, "lausann": 3, "law": [3, 16], "ldot": 3, "le": 3, "lead": 3, "leap": [0, 3], "leapfrog": [0, 3], "learn": 3, "least": 3, "left": 3, "leftov": 3, "len": 3, "length": 3, "lentner": 3, "leq": [3, 10, 15], "leroi": 3, "less": 3, "let": 3, "level": 3, "leverag": 16, "lib": 2, "libmkl_rt": 2, "librari": [1, 2, 3], "lie": 3, "like": 3, "limit": 3, "limpert": 3, "line": 3, "linewidth": 3, "linguist": 3, "linspac": 3, "list": [3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "literatur": 3, "litografiska": 3, "ll": 3, "llvm": 2, "ln": 3, "load": [0, 3], "loc": 3, "locat": [3, 16], "log": 3, "logarithm": 3, "logist": 3, "logistic_distribut": 3, "logisticdistribut": 3, "lognorm": 3, "logser": 3, "logseri": 3, "lomax": 3, "long": 3, "look": 3, "lorentz": 3, "low": 3, "lower": 3, "lowest": 3, "ltd": 3, "lunn": 3, "ly": 3, "m": [2, 3], "ma": 3, "mackai": 3, "magnitud": 3, "mai": [0, 3], "main": 16, "maintain": 16, "make": [2, 3, 10, 15, 16], "manag": 16, "mani": 3, "manual": 3, "marbl": 3, "martin": 3, "marvin": 3, "mass": 3, "materi": 3, "math": 1, "mathemat": 3, "mathematician": 3, "mathtt": 3, "mathworld": 3, "matplotlib": 3, "matrix": 3, "max": 3, "maxima": 3, "maximum": 3, "maxint": 3, "mcg": 6, "mcg31": [3, 5, 7], "mcg31m1": 0, "mcg59": [0, 3, 5], "mcgraw": 3, "mckai": 3, "mean": [0, 3], "meanvalu": 3, "measur": 3, "mechan": 3, "median": 3, "member": [0, 10, 15], "mersenn": [3, 5, 9, 10, 14], "meter": 3, "method": [0, 1, 3, 16], "methodologi": 3, "metrika": 3, "mid": 3, "million": 16, "min": 3, "minu": 3, "mirror": 16, "mise": 3, "mixtur": 3, "mkl": [2, 3, 5], "mkl_random": [0, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "mklroot": 2, "mode": 3, "model": 3, "modevalu": 3, "modifi": 3, "modul": [3, 16], "moivr": 3, "mont": 16, "more": [0, 3], "most": 3, "motion": 3, "mrg32k3a": [0, 3, 5], "mt19937": [0, 3, 5], "mt2203": [0, 3, 5, 15], "mu": 3, "much": 3, "multi": 3, "multinomi": 3, "multinorm": 3, "multinormal_choleski": 3, "multipl": [3, 5, 6, 7, 8, 15], "multipli": 3, "multivari": 3, "multivariate_norm": 3, "must": [0, 3], "n": 3, "name": 3, "nation": 3, "natur": 3, "nbad": 3, "nc_val": 3, "ndarrai": 3, "ndim": 3, "need": [2, 3, 16], "neg": 3, "negative_binomi": 3, "negative_binomial_distribut": 3, "negativebinomialdistribut": 3, "new": [1, 3, 16], "next": 16, "nf": 3, "ngood": 3, "nice": 0, "nine": 3, "nist": 3, "non": [0, 1, 3, 5, 11], "nonc": 3, "noncentr": 3, "noncentral_chi": 3, "noncentral_chisquar": 3, "noncentral_f": 3, "noncentralf": 3, "nondeterm": [3, 5], "none": 3, "nonneg": 3, "norm": 3, "normal": [3, 9], "normal_distribut": 3, "normalis": 3, "normed_i": 3, "north": 3, "note": 3, "notic": 3, "now": 3, "np": [0, 3, 16], "nr": 3, "nsamp": 3, "nsampl": [3, 9], "nskip": [0, 3], "nstream": [0, 3], "null": 3, "num": 3, "number": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "numer": 3, "numpi": [0, 2, 3, 16], "o": 3, "ob": 3, "object": 3, "observ": 3, "obtain": 3, "occup": 3, "occur": 3, "occurr": 3, "often": [3, 16], "oil": 3, "omit": 3, "onc": [0, 3], "one": [0, 3, 16], "oneapi": [1, 3], "onemkl": [1, 3, 5], "ones": 3, "ones_lik": 3, "onli": 3, "open": [2, 3], "option": 3, "order": 3, "org": [2, 3, 16], "orient": [3, 5, 14], "origin": [0, 3], "oscil": 3, "ostrowski": 3, "other": [0, 3], "otherwis": [0, 3], "out": [1, 3], "outcom": 3, "output": [3, 16], "outsid": 3, "over": [0, 3], "overlap": 0, "own": 3, "p": 3, "p_": 3, "pack": 3, "packag": [1, 2, 16], "page": 3, "paper": 3, "papouli": 3, "parallel": [10, 15], "paramet": [3, 11], "parameter": 3, "parent": 3, "pareto": 3, "pareto_distribut": 3, "part": [3, 16], "particular": [0, 3], "partit": 0, "path": 2, "pattern": 3, "paul": 3, "pdf": 3, "peak": 3, "peebl": 3, "peopl": 3, "percent": 3, "percentag": 3, "perform": [0, 3], "period": 0, "permut": 3, "peter": 3, "peyton": 3, "philosophi": 3, "philox": 12, "philox4x32x10": [0, 3, 5], "phy": 3, "physic": 16, "pi": [3, 16], "pickl": 0, "pickleabl": 0, "piec": 3, "piglet": 3, "pip": 16, "place": 3, "platform": 3, "player": 3, "pleas": [0, 10, 15], "plot": 3, "plt": 3, "po": 3, "point": 3, "poisnorm": 3, "poisson": 3, "poisson_distribut": 3, "poisson_process": 3, "poissondistribut": 3, "polit": 3, "pooh": 3, "popul": [3, 16], "popular": 3, "posit": [0, 3], "possibl": 3, "post_draw": 0, "power": 3, "powerlaw": 3, "powpdf": 3, "pp": 3, "precis": 3, "present": 16, "press": 3, "pretti": 3, "previou": 16, "primer": 3, "principl": 3, "print": [3, 16], "prior": 3, "probabl": [3, 5, 16], "problem": [1, 3], "process": [1, 3], "prod_": 3, "produc": 0, "product": 3, "professor": 3, "project": [2, 3], "propag": 3, "proper": 3, "properti": [0, 3, 10, 15], "proport": 3, "propos": 3, "proprietari": 3, "provid": [0, 3, 11, 16], "psedo": 3, "pseudo": [0, 1, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15], "pseudonym": 3, "pseudorandom": 10, "psuedo": [3, 8, 10, 15, 16], "ptpe": 3, "publish": 3, "pull": 3, "pval": 3, "py": [2, 16], "pypi": 16, "pyplot": 3, "pytest": 2, "python": [0, 1, 2, 3, 16], "q": 3, "qualiti": 16, "quasi": 0, "quiglei": 3, "r": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "r250": [0, 3, 5], "rabbit": 3, "raindrop": 3, "rainfal": 3, "rainstorm": 3, "rais": [0, 3], "raj": 3, "rammler": 3, "rand": 3, "randint": [3, 4, 6, 7, 8, 10, 12, 13, 14, 15], "randint_untyp": 3, "randn": 3, "random": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "random_integ": 3, "random_random_intel": 3, "random_sampl": 3, "randomli": 3, "randomst": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "rang": 3, "rank": 3, "rate": 3, "rather": 3, "ratio": 3, "rayleigh": 3, "rayleigh_distribut": 3, "re": 3, "reach": 3, "read": 3, "real": 3, "reason": 3, "recip": 1, "recommend": 3, "recurs": [5, 8], "reduc": 3, "refer": [0, 1, 3, 10, 15], "refman2": 3, "region": 3, "regist": [5, 13], "reiss": 3, "reject": 3, "rel": 3, "relat": 3, "relationship": 3, "releas": 16, "relev": 3, "reli": [3, 16], "reliabl": 3, "remain": 3, "rememb": 0, "render": 2, "repeat": [3, 16], "repeatedli": 3, "replac": 3, "repo": [0, 2, 10, 15, 16], "report": 3, "repositori": 16, "repres": [3, 10, 15], "represent": 3, "reproduc": 11, "request": 3, "requir": [2, 3, 11, 16], "research": 3, "resembl": 3, "reshap": 3, "resourc": 3, "respect": 3, "restor": [0, 16], "restored_r": 0, "result": 3, "resumed_draw": 0, "retain": 16, "return": 3, "rewritten": 3, "rich": 3, "richard": 3, "riemann": 3, "right": 3, "roll": 3, "rosin": 3, "roughli": 3, "royal": 3, "rs0": [10, 15], "rs5": [10, 15], "rs_def": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "rs_vec": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "rule": 3, "run": [2, 3, 16], "rv": 3, "rvsp": 3, "s11": 3, "s_t": 3, "sai": 3, "same": [0, 3, 10, 15, 16], "sampl": [0, 1, 3, 5, 10, 15, 16], "sample_s": 16, "samuel": 3, "satisfi": 3, "save": 16, "scalar": [3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "scale": 3, "scienc": 3, "scipi": 3, "scrambl": 16, "script": 16, "second": 3, "section3": 3, "see": [3, 5], "seed": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "seem": 3, "seen": 3, "select": 3, "sematech": 3, "semidefinit": 3, "sensit": 3, "separ": [3, 16], "septemb": 3, "seqeuenc": 16, "sequenc": [0, 3, 16], "seri": 3, "set": [2, 3, 5, 10, 15, 16], "set_id": [10, 15], "set_stat": 3, "setup": 2, "setuptool": 2, "sev": 3, "sfmt19937": [0, 3, 5], "shape": 3, "sharper": 3, "she": 3, "shift": [3, 5, 13], "short": 3, "should": [3, 11], "show": 3, "shuffl": 3, "side": 3, "sigma": 3, "sign": 3, "signal": 3, "sim": 3, "simd": [5, 14], "similar": 3, "simpl": 16, "simplifi": 3, "simul": [0, 3, 11], "sinc": [3, 16], "singl": 3, "situat": 3, "six": 3, "size": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "skip": [0, 3], "skipahead": [0, 3], "small": 3, "smallest": 3, "so": [0, 2, 3, 16], "softwar": [3, 16], "solut": 3, "some": [0, 3], "sometim": [3, 16], "sort": 3, "sourc": [2, 5, 11, 16], "sourceforg": 3, "sp": 3, "space": 3, "speci": 3, "special": 3, "specif": 3, "specifi": [3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "spectral": 3, "speed": 3, "spheric": 3, "sphinx": 2, "spread": 3, "springer": 3, "sqrt": 3, "squar": 3, "square_distribut": 3, "stahel": 3, "standard": [3, 16], "standard_cauchi": 3, "standard_exponenti": 3, "standard_gamma": 3, "standard_norm": [0, 3], "standard_t": 3, "stanton": 3, "stasist": 0, "stat": 3, "state": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "statist": [0, 3, 10, 15, 16], "statu": 3, "std": 3, "stdev": 3, "stdlib": 3, "stegun": 3, "stephen": 3, "stochast": [3, 10, 11, 15, 16], "stock": 3, "stockholm": 3, "store": 16, "stork": 3, "str": 3, "stream": [0, 3, 5, 10, 15], "strength": 3, "string": 3, "student": 3, "studi": 3, "sub": 0, "subcommand": 3, "subsequ": 0, "succeed": 3, "success": 3, "suffici": 0, "suit": 2, "suitabl": [10, 15], "sum": [3, 16], "sum_": 3, "suppli": 3, "support": [0, 2, 3, 5], "suppos": 3, "sure": 2, "surprisingli": 3, "sy": 3, "symmetr": 3, "system": [3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "systemat": 3, "t": 3, "tabl": 3, "tail": 3, "take": [3, 16], "target": 3, "task": [0, 1], "technic": 3, "technologi": 3, "ten": 3, "tend": 3, "test": [2, 3, 16], "text": [3, 10, 15], "th": [3, 10, 15], "than": [0, 3], "thei": [1, 3], "them": 3, "theorem": 3, "theori": 3, "therefor": 3, "theta": 3, "thi": [0, 3, 10, 11, 15, 16], "third": 3, "thoma": 3, "those": [0, 3, 16], "thought": 3, "thousand": 3, "three": 3, "threw": 3, "through": [1, 3, 16], "throw": 3, "tight": 3, "tilt": 3, "time": 3, "tini": 3, "titl": 3, "togeth": 3, "token": 3, "tomaxint": 3, "tool": 3, "top": 3, "tragectori": 0, "translat": 3, "transpos": 3, "trial": 3, "triangular": 3, "triangular_distribut": 3, "true": [3, 16], "truncat": 3, "try": 3, "tupl": [3, 10, 15], "tutori": 1, "tweedi": 3, "twice": 3, "twister": [3, 5, 9, 10, 14], "two": [0, 3], "type": 3, "u": 3, "uint": 3, "uk": 3, "ukrain": 3, "unbias": 3, "unbound": 3, "undefin": 3, "under": 3, "underestim": 3, "underli": 3, "understand": 3, "unif": 3, "uniform": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "uniformli": 3, "uniqu": 3, "unit": 3, "univ": 3, "univari": 3, "univers": 3, "unless": 3, "unlik": [3, 16], "unsign": 3, "until": 3, "up": 3, "updat": 16, "upper": 3, "urandom": 3, "urn": 3, "us": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "usampl": 9, "user": [1, 3, 16], "usual": 16, "v": 3, "valu": [3, 16], "valueerror": [0, 3], "values2": 3, "vari": 3, "variabl": [2, 3], "varianc": 3, "variat": [3, 16], "varieti": 3, "variou": 16, "vector": [3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "veloc": 3, "veri": 3, "verifi": 3, "verlag": 3, "version": 3, "via": 16, "vilfredo": 3, "vol": 3, "volum": 3, "von": 3, "vonmis": 3, "w": 3, "wa": 3, "wai": 3, "wait": 3, "wald": 3, "wald_distribut": 3, "waloddi": 3, "want": [1, 3], "wave": 3, "we": [2, 3], "wealth": 3, "weapon": 3, "web": 3, "weib": 3, "weibul": 3, "weibull_distribut": 3, "weibull_max": 3, "weibull_min": 3, "weight": 3, "weisstein": 3, "welcom": 2, "well": 3, "were": [0, 3], "wh": [0, 3, 5, 15], "what": 3, "when": [0, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "where": [3, 10, 15], "wherea": 3, "whether": 3, "which": 3, "while": [0, 3, 5, 16], "white": 3, "who": 3, "wichmann": 5, "wide": 3, "width": 3, "wiki": 3, "wikipedia": 3, "wild": 3, "wilei": 3, "william": 3, "wind": 3, "window": 3, "within": 3, "without": 3, "wolfram": 3, "women": 3, "word": 3, "work": [2, 3, 16], "worker": 0, "world": 3, "would": [2, 3], "wrong": 3, "www": 3, "x": [3, 16], "x022sz": 3, "x85": 3, "x_0": 3, "x_1": 3, "x_2": 3, "x_i": 3, "x_j": 3, "x_n": 3, "x_p": 3, "xa4": 3, "xbf": 3, "xx": 3, "y": [3, 16], "y_": 3, "y_1": 3, "y_i": 3, "y_n": 3, "year": 3, "yield": 3, "york": 3, "you": [1, 2, 3], "your": 2, "z": 3, "zero": 3, "zeta": 3, "zetac": 3, "zipf": 3}, "titles": ["How-to Guides", "mkl_random: random numbers fast", "Contributing", "Class RandomState", "ARS5 brng", "mkl_random APIs", "MCG31 brng", "MCG59 brng", "MRG32k3a brng", "MT19937 brng", "MT2203 brng", "Nondeterm brng", "Philox4x32x10 brng", "R250 brng", "SFMT19937 brng", "Wichmann-Hill brng", "Beginner\u2019s guide"], "titleterms": {"": 16, "api": 5, "ars5": 4, "beginn": 16, "brng": [4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "class": 3, "comput": 0, "contribut": 2, "determinist": 16, "fast": 1, "first": 16, "gener": 16, "guid": [0, 16], "hill": 15, "how": 0, "instal": 16, "long": 0, "mcg31": 6, "mcg59": 7, "mkl_random": [1, 5], "mrg32k3a": 8, "mt19937": 9, "mt2203": 10, "multiprocess": 0, "non": 16, "nondeterm": 11, "number": 1, "parallel": 0, "philox4x32x10": 12, "pseudo": 16, "r250": 13, "random": [1, 16], "randomst": 3, "resum": 0, "save": 0, "sfmt19937": 14, "step": 16, "stochast": 0, "v": 16, "wichmann": 15}}) \ No newline at end of file +Search.setIndex({"alltitles": {"ARS5 brng": [[4, null]], "Beginner\u2019s guide": [[16, null]], "Class RandomState": [[3, null]], "Contributing": [[2, null]], "First steps": [[16, "first-steps"]], "How to save and resume long computation": [[0, "how-to-save-and-resume-long-computation"]], "How-to Guides": [[0, null]], "Installation": [[16, "installation"]], "MCG31 brng": [[6, null]], "MCG59 brng": [[7, null]], "MRG32k3a brng": [[8, null]], "MT19937 brng": [[9, null]], "MT2203 brng": [[10, null]], "Nondeterm brng": [[11, null]], "Philox4x32x10 brng": [[12, null]], "Pseudo-random vs. non-deterministic generators": [[16, "pseudo-random-vs-non-deterministic-generators"]], "R250 brng": [[13, null]], "SFMT19937 brng": [[14, null]], "Stochastic computations in parallel with multiprocessing": [[0, "stochastic-computations-in-parallel-with-multiprocessing"]], "Wichmann-Hill brng": [[15, null]], "mkl_random APIs": [[5, null]], "mkl_random: random numbers fast": [[1, null]]}, "docnames": ["how_to", "index", "maintenance/index", "reference/api", "reference/ars5", "reference/index", "reference/mcg31", "reference/mcg59", "reference/mrg32k3a", "reference/mt19937", "reference/mt2203", "reference/nondeterministic", "reference/philox4x32x10", "reference/r250", "reference/sfmt19937", "reference/wichmann_hill", "tutorials"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1}, "filenames": ["how_to.rst", "index.rst", "maintenance/index.rst", "reference/api.rst", "reference/ars5.rst", "reference/index.rst", "reference/mcg31.rst", "reference/mcg59.rst", "reference/mrg32k3a.rst", "reference/mt19937.rst", "reference/mt2203.rst", "reference/nondeterministic.rst", "reference/philox4x32x10.rst", "reference/r250.rst", "reference/sfmt19937.rst", "reference/wichmann_hill.rst", "tutorials.rst"], "indexentries": {"beta() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.beta", false]], "binomial() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.binomial", false]], "bytes() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.bytes", false]], "chisquare() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.chisquare", false]], "choice() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.choice", false]], "dirichlet() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.dirichlet", false]], "exponential() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.exponential", false]], "f() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.f", false]], "gamma() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.gamma", false]], "geometric() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.geometric", false]], "get_state() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.get_state", false]], "gumbel() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.gumbel", false]], "hypergeometric() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.hypergeometric", false]], "laplace() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.laplace", false]], "leapfrog()": [[0, "leapfrog", false]], "leapfrog() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.leapfrog", false]], "logistic() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.logistic", false]], "lognormal() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.lognormal", false]], "logseries() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.logseries", false]], "multinomial() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.multinomial", false]], "multinormal_cholesky() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.multinormal_cholesky", false]], "multivariate_normal() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.multivariate_normal", false]], "negative_binomial() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.negative_binomial", false]], "noncentral_chisquare() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.noncentral_chisquare", false]], "noncentral_f() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.noncentral_f", false]], "normal() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.normal", false]], "pareto() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.pareto", false]], "permutation() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.permutation", false]], "poisson() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.poisson", false]], "power() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.power", false]], "rand() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.rand", false]], "randint() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.randint", false]], "randint_untyped() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.randint_untyped", false]], "randn() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.randn", false]], "random_integers() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.random_integers", false]], "random_sample() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.random_sample", false]], "randomstate (class in mkl_random)": [[3, "mkl_random.RandomState", false]], "rayleigh() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.rayleigh", false]], "seed() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.seed", false]], "set_state() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.set_state", false]], "shuffle() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.shuffle", false]], "skipahead()": [[0, "skipahead", false]], "skipahead() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.skipahead", false]], "standard_cauchy() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.standard_cauchy", false]], "standard_exponential() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.standard_exponential", false]], "standard_gamma() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.standard_gamma", false]], "standard_normal() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.standard_normal", false]], "standard_t() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.standard_t", false]], "tomaxint() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.tomaxint", false]], "triangular() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.triangular", false]], "uniform() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.uniform", false]], "vonmises() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.vonmises", false]], "wald() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.wald", false]], "weibull() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.weibull", false]], "zipf() (mkl_random.randomstate method)": [[3, "mkl_random.RandomState.zipf", false]]}, "objects": {"": [[0, 0, 1, "", "leapfrog"], [0, 0, 1, "", "skipahead"]], "mkl_random": [[3, 1, 1, "", "RandomState"]], "mkl_random.RandomState": [[3, 0, 1, "", "beta"], [3, 0, 1, "", "binomial"], [3, 0, 1, "", "bytes"], [3, 0, 1, "", "chisquare"], [3, 0, 1, "", "choice"], [3, 0, 1, "", "dirichlet"], [3, 0, 1, "", "exponential"], [3, 0, 1, "", "f"], [3, 0, 1, "", "gamma"], [3, 0, 1, "", "geometric"], [3, 0, 1, "", "get_state"], [3, 0, 1, "", "gumbel"], [3, 0, 1, "", "hypergeometric"], [3, 0, 1, "", "laplace"], [3, 0, 1, "", "leapfrog"], [3, 0, 1, "", "logistic"], [3, 0, 1, "", "lognormal"], [3, 0, 1, "", "logseries"], [3, 0, 1, "", "multinomial"], [3, 0, 1, "", "multinormal_cholesky"], [3, 0, 1, "", "multivariate_normal"], [3, 0, 1, "", "negative_binomial"], [3, 0, 1, "", "noncentral_chisquare"], [3, 0, 1, "", "noncentral_f"], [3, 0, 1, "", "normal"], [3, 0, 1, "", "pareto"], [3, 0, 1, "", "permutation"], [3, 0, 1, "", "poisson"], [3, 0, 1, "", "power"], [3, 0, 1, "", "rand"], [3, 0, 1, "", "randint"], [3, 0, 1, "", "randint_untyped"], [3, 0, 1, "", "randn"], [3, 0, 1, "", "random_integers"], [3, 0, 1, "", "random_sample"], [3, 0, 1, "", "rayleigh"], [3, 0, 1, "", "seed"], [3, 0, 1, "", "set_state"], [3, 0, 1, "", "shuffle"], [3, 0, 1, "", "skipahead"], [3, 0, 1, "", "standard_cauchy"], [3, 0, 1, "", "standard_exponential"], [3, 0, 1, "", "standard_gamma"], [3, 0, 1, "", "standard_normal"], [3, 0, 1, "", "standard_t"], [3, 0, 1, "", "tomaxint"], [3, 0, 1, "", "triangular"], [3, 0, 1, "", "uniform"], [3, 0, 1, "", "vonmises"], [3, 0, 1, "", "wald"], [3, 0, 1, "", "weibull"], [3, 0, 1, "", "zipf"]]}, "objnames": {"0": ["py", "method", "Python method"], "1": ["py", "class", "Python class"]}, "objtypes": {"0": "py:method", "1": "py:class"}, "terms": {"": [3, 5, 15], "0": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "000": 3, "0000001": 3, "003": 3, "00867716": 3, "009": 3, "0090699999999999999": 3, "00950034": 3, "01": 3, "087300000000000003": 3, "09": 3, "1": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "10": [3, 9, 16], "100": [0, 3], "1000": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "10000": 3, "100000": 3, "1000000": 3, "103": [5, 13], "11": 3, "1132489760": 6, "1142": 3, "11659149": 3, "1170048599": 3, "12": 3, "1232221373727": 3, "1234": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "125": 3, "132": 3, "133": 3, "1357913": 0, "13710533": 3, "14": 3, "14022471": 3, "14167732": 16, "1479324245": 3, "148": 3, "15": 3, "151": 3, "16": 3, "1600360186": 3, "1601631370": 3, "1654503": 3, "17": 3, "1774": 3, "187": 3, "1871712945": 3, "1896": 3, "1908": 3, "1923875335537315": 3, "1932": 3, "1939": 3, "1943": 3, "1947757578": 3, "195": 3, "1951": 3, "1956": 3, "1958": 3, "1964": 3, "1970": 3, "1972": 3, "1988": 3, "1991": 3, "1994": 3, "1999": 3, "1_000_000": [10, 15, 16], "2": [3, 6, 14], "20": 3, "200": [3, 15], "20000": 3, "2001": 3, "2002": 3, "2003": 3, "2007": 3, "2147483647": 3, "23": 3, "23204345": 3, "25": 3, "250": [5, 13], "25528411": 3, "26": 3, "27": 3, "273": [5, 15], "29718677": 3, "2_i": 3, "2_k": 3, "2i": 3, "2nd": 3, "2x": 3, "3": [3, 4, 6, 7, 8, 10, 12, 13, 14, 15, 16], "30": 3, "30220482": 3, "31": [3, 5, 6], "32": [3, 5, 13], "34889999999999999": 3, "35": 3, "36": 3, "37601032": 3, "38": 3, "38672696": 3, "38885": 3, "39924804": 3, "3rd": 3, "3x8000": 3, "4": [3, 9, 16], "40": 3, "42": 3, "4685006": 3, "47": 3, "47108547995356098": 3, "48": 3, "49": 3, "49313049": 3, "49401501": 3, "49876311": 3, "4th": 3, "4x32x10": 12, "5": [0, 3, 10, 15], "50": 3, "500": 3, "5000": 3, "51": 3, "52338984": 3, "5260": 3, "54323428": 3, "5470": 3, "5640": 3, "567": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "57": 3, "57721": 3, "58": 3, "59": [5, 7], "6": [3, 4, 6, 7, 8, 10, 12, 13, 14, 15, 16], "6023": 10, "6024": [5, 10], "607": 3, "6180": 3, "61988120985": 3, "62": 3, "62318272": 3, "624": 3, "625": 3, "636363636364": 3, "6390": 3, "6515": 3, "6753": 3, "6805": 3, "68456316": 3, "6888893": 3, "7": 3, "739731006": 3, "7515": 3, "75224494": 3, "752307660": 3, "7725": 3, "777": [0, 10, 15], "78096262": 3, "79479508": 3, "8": [3, 16], "80": 3, "8000": 3, "81814867": 3, "82": 3, "8230": 3, "83": 3, "84057254": 3, "86": 3, "86820401": 3, "8770": 3, "89": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "89086505": 3, "89920014": 3, "9": 3, "94909878": 3, "95": 3, "96360618": 3, "99": 3, "99091858": 3, "99149989": 3, "99394529": 3, "9th": 3, "A": [2, 3], "As": 3, "For": 3, "If": 3, "In": 3, "It": 3, "Its": 3, "NOT": 3, "No": 3, "Of": 3, "On": 3, "Such": 3, "The": [0, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16], "Then": 3, "These": [3, 16], "To": [0, 1, 2, 3], "With": 3, "_": 3, "_i": 3, "_seed_": 16, "aa_milne_arr": 3, "ab": 3, "abbt": 3, "about": 3, "abov": [3, 16], "abramowitz": 3, "absolut": 3, "ac": 3, "academ": 3, "accept": [3, 16], "access": 3, "accomplish": 0, "accord": 3, "account": 3, "achiev": 3, "across": 3, "act": 3, "actual": 3, "actuari": 3, "ad": 3, "add": [1, 3], "addit": 3, "address": [10, 15], "advanc": 0, "advantag": 3, "ae": [4, 5], "aerodynam": 3, "affect": 3, "after": [3, 16], "again": 3, "against": 3, "ahead": [0, 3], "al": 3, "algorithm": [3, 4, 5, 10, 15, 16], "alia": 3, "align": 3, "all": 3, "allow": [0, 3], "along": 3, "alpha": 3, "alpha_i": 3, "alreadi": 16, "also": [0, 2, 3, 5, 16], "alter": 3, "altern": 3, "although": 3, "alwai": 3, "american": 3, "an": [2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "anaconda": 16, "analog": 3, "analogu": 3, "analysi": 3, "angl": 3, "ani": 3, "anim": 3, "anova": 3, "anstalt": 3, "answer": 3, "anywher": 3, "appear": 3, "append": 3, "appli": 3, "applic": 3, "appreci": 2, "approach": 3, "appropri": 3, "approx": 3, "approxim": 3, "ar": [1, 2, 3, 10, 15], "arang": 3, "arbitrari": 3, "area": 3, "argument": [0, 3, 5], "aris": 3, "arr": 3, "arrai": 3, "arrang": 3, "array_equ": 0, "array_lik": 3, "ars5": [0, 3, 5], "asm": 3, "asp": 3, "assert": 0, "assign": 0, "associ": 3, "assum": 3, "assumpt": [0, 3], "asymptot": 3, "attempt": 3, "austria": 3, "automat": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "auxillar": 3, "avail": [1, 3, 16], "averag": 3, "avoid": 0, "awai": 3, "awar": 3, "ax": 3, "axi": 3, "b": 3, "backward": [3, 16], "bad": 3, "ball": 3, "barh": 3, "base": [3, 4, 5, 12], "basel": 3, "basic": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "batch_siz": 16, "batteri": 16, "bayesian": 3, "becam": 3, "becaus": 3, "becom": 3, "been": 3, "befor": 3, "begin": [0, 3, 16], "beginn": 1, "behavior": 3, "being": 3, "bell": 3, "below": 3, "bernoulli": 3, "besid": 3, "bessel": 3, "beta": 3, "better": 3, "between": 3, "bias": 3, "bigl": 3, "bigr": 3, "bin": 3, "binom": 3, "binomi": [3, 9], "binomial_distribut": 3, "binomialdistribut": 3, "biodivers": 3, "bioscienc": 3, "biostatist": 3, "birkhaus": 3, "bit": [3, 5, 6, 7, 13], "bitgener": 16, "black": 3, "blood": 3, "bogden": 3, "bomb": 3, "bool": 3, "boolean": 3, "born": 3, "both": [2, 3], "bound": 3, "boundari": 3, "boxmul": 3, "boxmuller2": 3, "bradford": 3, "break": 0, "breweri": 3, "brighton": 3, "brng": [0, 3, 5], "broadcast": 3, "broaden": 3, "brownian": 3, "bsampl": 9, "build": 2, "buza": 3, "byte": 3, "byteord": 3, "c": [3, 16], "c_": 3, "c_val": 3, "calcul": 3, "call": [3, 16], "cam": 3, "cambridg": 3, "can": [2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "car": 3, "care": 0, "carlo": 16, "case": 3, "cat": 3, "cauchi": 3, "cauchy_distribut": 3, "cauchydistribut": 3, "caveat": 16, "cdotp": 3, "center": 3, "centr": 3, "central": [3, 16], "ch": 3, "chanc": 3, "channel": 16, "chapter": 3, "characterist": 3, "check": [1, 16], "chess": 3, "chhikara": 3, "chi": 3, "children": 3, "chisquar": 3, "choic": 3, "choleski": 3, "choos": [0, 3], "chosen": [3, 5], "christian": 3, "christoph": 3, "circl": 3, "circular": 3, "cite": 3, "claim": 3, "class": [1, 5, 16], "classic": 3, "classif": 3, "clock": [3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "clone": 2, "close": 3, "clue": 3, "co": 3, "codebas": 1, "coin": 3, "color": 3, "columbia": 3, "com": [2, 3, 16], "combin": [5, 8, 15], "come": 3, "common": [1, 3], "commonli": 3, "compani": 3, "compar": 3, "comparison": 3, "compat": [3, 16], "competitor": 3, "compil": 2, "compon": 3, "compromis": 0, "comput": [3, 16], "conda": 16, "condit": 3, "congruenti": [5, 6, 7, 15], "conjug": 3, "consequ": 3, "consid": 3, "consist": 3, "construct": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "constructor": [5, 11], "consum": 0, "contain": [1, 3], "content": 3, "continu": [0, 1, 3, 16], "contribut": 1, "contributor": 1, "control": 3, "conveni": 3, "convert": 3, "coordin": 3, "copi": 3, "corbet": 3, "correct": 0, "count": 3, "counter": [4, 5, 12], "cours": 3, "cov": 3, "covari": 3, "cover": 3, "coverag": 3, "crc": 3, "creat": [3, 16], "culver": 3, "cumul": 3, "current": 3, "curv": 3, "cut": 3, "cycl": 0, "cython": 2, "d": 3, "d0": 3, "d1": 3, "d2": 3, "d3": 3, "d_i": 3, "daili": 3, "dalgaard": 3, "dali": 3, "data": 3, "dataplot": 3, "david": 3, "ddof": 3, "de": 3, "decai": 3, "decemb": 3, "dedic": 16, "def": 3, "default": [3, 5, 16], "defin": 3, "definit": 3, "deg": 3, "degre": 3, "delhi": 3, "demonstr": 3, "denomin": 3, "denot": 3, "densiti": 3, "depend": [2, 3], "deprec": 3, "deriv": 3, "describ": 3, "descript": 1, "design": [3, 10, 15, 16], "desir": 3, "detail": [0, 1, 3], "determin": 3, "determinist": [1, 3, 5, 11], "dev": 3, "develop": [2, 3], "deviat": 3, "devic": [5, 11], "df": 3, "dfden": 3, "dfnum": 3, "diabet": 3, "diagon": 3, "dice": 3, "die": 3, "diehard": 16, "diff": 3, "differ": [0, 3, 5, 10, 15, 16], "dimens": 3, "dimension": 3, "directli": 3, "dirichlet": 3, "dirichlet_distribut": 3, "discret": [1, 3, 4, 6, 7, 8, 10, 12, 13, 14, 15], "dispers": 3, "displai": 3, "distanc": 3, "distibut": [4, 6, 7, 8, 10, 12, 13, 14, 15], "distribut": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16], "disturb": 3, "div898": 3, "divers": 3, "divisor": 3, "dn": 3, "do": [0, 3], "doc": 2, "document": [2, 3], "doe": [0, 3, 16], "done": 16, "doubl": 3, "dover": 3, "down": 0, "download": 3, "draw": [0, 3, 16], "drawn": [0, 3], "drill": 3, "driven": 3, "dsum": 3, "dt": 3, "dtype": 3, "dublin": 3, "duda": 3, "due": [0, 3], "dump": 0, "dure": 3, "e": [3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "each": [0, 3, 10, 15], "earli": 3, "earlier": 3, "easi": 16, "east": 3, "ecologi": 3, "econom": 3, "economi": 3, "economist": 3, "ecosystem": 16, "ed": 3, "eda": 3, "eda3663": 3, "eda3666": 3, "edit": 3, "edler": 3, "effect": 3, "effici": 3, "eh": 3, "either": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "electron": 3, "element": 3, "elementari": 3, "elo": 3, "elsewher": 3, "emil": 3, "emul": 16, "en": 3, "encrypt": [4, 5], "end": 3, "energi": 3, "engin": [3, 5], "ensur": 0, "entri": 3, "entropi": 16, "environ": 2, "epidemiologi": 3, "equal": [0, 3], "equival": 3, "eric": 3, "error": 3, "esampl": [4, 6, 7, 8, 11, 12, 13, 14], "estim": [3, 16], "et": 3, "etc": 3, "ethz": 3, "evenli": 3, "event": 3, "exactli": 3, "exampl": [0, 3, 5, 10, 15, 16], "exce": 3, "except": [0, 3], "exclud": 3, "exclus": 3, "execut": 16, "exist": 3, "exp": 3, "expect": 3, "experi": 3, "explor": 3, "expon": 3, "exponenti": [3, 14], "exponential_distribut": 3, "export": 2, "expos": [1, 3, 5], "express": 3, "extrem": 3, "f": 3, "factor": 3, "fail": 3, "failur": 3, "fals": 3, "famili": 0, "familiar": 16, "far": 3, "fast": 3, "fat": 3, "fatter": 3, "feder": 3, "feedback": [5, 13], "fide": 3, "field": 3, "fifth": 3, "figur": 3, "fill": 3, "filliben": 3, "financ": 3, "finit": 16, "first": 3, "fisher": 3, "fit": 3, "five": 3, "fix": 0, "fled": 3, "flip": 3, "float": 3, "flood": 3, "fluid": 3, "folder": [0, 10, 15], "folk": 3, "follow": [3, 5, 16], "forg": 16, "fork": 2, "forlag": 3, "form": 3, "formula": 3, "found": [2, 3], "four": 3, "frac": 3, "fraction": 3, "franci": 3, "frechet": 3, "free": 2, "freedom": 3, "frequenc": 3, "frequent": 3, "frog": [0, 3], "from": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "fulfil": 3, "full": 3, "function": 3, "g": [2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "gamma": [0, 3, 4, 6, 7, 8, 10, 12, 13, 14, 15], "gammadistribut": 3, "gauss": 3, "gaussian": [3, 9], "gener": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "generalis": 3, "generalstaben": 3, "genextrem": 3, "genpareto": 3, "geometr": 3, "georg": 3, "german": 3, "get": 3, "get_stat": 3, "gev": 3, "gfsr": [5, 13], "gisset": 3, "git": 2, "github": [0, 2, 10, 15], "give": 3, "given": 3, "glantz": 3, "glucos": 3, "gnu": 2, "good": 3, "gov": 3, "grab": 3, "graph": 3, "greater": 3, "group": 3, "gsampl": [4, 6, 7, 8, 10, 12, 13, 14, 15], "guarante": 3, "guid": 1, "guidelin": 1, "guin": 3, "gumbel": 3, "gumbel_l": 3, "gumbel_r": 3, "h": [2, 3], "ha": [3, 16], "had": 3, "half": 3, "hand": [1, 3], "handbook": 3, "handlingar": 3, "happen": 3, "hardwar": [3, 5, 11, 16], "harmon": 3, "hart": 3, "harvard": 3, "have": [3, 16], "he": 3, "header": 2, "health": 3, "heavi": 3, "heavier": 3, "heckert": 3, "height": 3, "henc": 3, "here": [3, 16], "high": 3, "higher": 3, "highest": 3, "hill": [3, 5], "hist": 3, "histogram": 3, "hold": 3, "holla": 3, "how": [2, 3], "howev": 3, "htm": 3, "html": [2, 3], "http": [2, 3, 16], "hungari": 3, "hunt": 3, "hydrologi": 3, "hyperbol": 3, "hypergeom": 3, "hypergeometr": 3, "hypergeometric_distribut": 3, "hypergeometricdistribut": 3, "hypothesi": 3, "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "i0": 3, "i_0": 3, "icdf": 3, "icpx": 2, "ident": 3, "identifi": 0, "ignor": [3, 11], "ii": 3, "iii": 3, "iinfo": 3, "ij": 3, "ill": 3, "implement": 3, "impli": [3, 16], "import": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "improv": 1, "inappropri": 3, "includ": [2, 3], "inclus": 3, "increas": 3, "independ": [0, 3, 10, 15, 16], "index": [3, 16], "indic": 3, "indistinguish": 0, "indistunguish": 0, "individu": [3, 10, 15], "infer": 3, "infin": 3, "infinit": 3, "influenc": 3, "inform": 3, "infti": 3, "ingeniorsvetenskapsakademien": 3, "initi": [0, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "input": 3, "instal": 2, "instanc": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "instead": 3, "institut": 3, "insur": 3, "int": 3, "int64": 3, "int_0": 3, "int_lik": 3, "intak": 3, "integ": [0, 3, 16], "integr": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "intel": [1, 2, 3, 16], "intelpython": 2, "interest": [3, 16], "interfac": 3, "interleav": 0, "intern": [0, 3, 16], "interv": 3, "introduc": 16, "introduct": 1, "introductori": 3, "invers": 3, "isampl": [4, 6, 7, 8, 10, 12, 13, 14, 15], "issu": 3, "italian": 3, "item": 3, "itl": 3, "its": [1, 2, 3, 16], "itself": 3, "j": 3, "jame": 3, "johnson": 3, "journal": 3, "jr": 3, "juliu": 3, "june": 3, "just": 3, "k": [0, 3], "kappa": 3, "keep": 3, "kei": [1, 3], "kernel": 1, "keyword": [3, 5], "kill": 3, "kingslei": 3, "kj": 3, "kleiber": 3, "know": 3, "knowledg": 3, "known": [3, 5, 16], "kotz": 3, "l": 3, "lam": 3, "lambda": 3, "land": 3, "languag": 3, "laplac": 3, "laplace_distribut": 3, "laplacedistribut": 3, "larg": 3, "larger": 3, "largest": 3, "last": 3, "later": 3, "lausann": 3, "law": [3, 16], "ldot": 3, "le": 3, "lead": 3, "leap": [0, 3], "leapfrog": [0, 3], "learn": 3, "least": 3, "left": 3, "leftov": 3, "len": 3, "length": 3, "lentner": 3, "leq": [3, 10, 15], "leroi": 3, "less": 3, "let": 3, "level": 3, "leverag": 16, "lib": 2, "libmkl_rt": 2, "librari": [1, 2, 3], "lie": 3, "like": 3, "limit": 3, "limpert": 3, "line": 3, "linewidth": 3, "linguist": 3, "linspac": 3, "list": [3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "literatur": 3, "litografiska": 3, "ll": 3, "llvm": 2, "ln": 3, "load": [0, 3], "loc": 3, "locat": [3, 16], "log": 3, "logarithm": 3, "logist": 3, "logistic_distribut": 3, "logisticdistribut": 3, "lognorm": 3, "logser": 3, "logseri": 3, "lomax": 3, "long": 3, "look": 3, "lorentz": 3, "low": 3, "lower": 3, "lowest": 3, "ltd": 3, "lunn": 3, "ly": 3, "m": [2, 3], "ma": 3, "mackai": 3, "magnitud": 3, "mai": [0, 3], "main": 16, "maintain": 16, "make": [2, 3, 10, 15, 16], "manag": 16, "mani": 3, "manual": 3, "marbl": 3, "martin": 3, "marvin": 3, "mass": 3, "materi": 3, "math": 1, "mathemat": 3, "mathematician": 3, "mathtt": 3, "mathworld": 3, "matplotlib": 3, "matrix": 3, "max": 3, "maxima": 3, "maximum": 3, "maxint": 3, "mcg": 6, "mcg31": [3, 5, 7], "mcg31m1": 0, "mcg59": [0, 3, 5], "mcgraw": 3, "mckai": 3, "mean": [0, 3], "meanvalu": 3, "measur": 3, "mechan": 3, "median": 3, "member": [0, 10, 15], "mersenn": [3, 5, 9, 10, 14], "meter": 3, "method": [0, 1, 3, 16], "methodologi": 3, "metrika": 3, "mid": 3, "million": 16, "min": 3, "minu": 3, "mirror": 16, "mise": 3, "mixtur": 3, "mkl": [2, 3, 5], "mkl_random": [0, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "mklroot": 2, "mode": 3, "model": 3, "modevalu": 3, "modifi": 3, "modul": [3, 16], "moivr": 3, "mont": 16, "more": [0, 3], "most": 3, "motion": 3, "mrg32k3a": [0, 3, 5], "mt19937": [0, 3, 5], "mt2203": [0, 3, 5, 15], "mu": 3, "much": 3, "multi": 3, "multinomi": 3, "multinorm": 3, "multinormal_choleski": 3, "multipl": [3, 5, 6, 7, 8, 15], "multipli": 3, "multivari": 3, "multivariate_norm": 3, "must": [0, 3], "n": 3, "name": 3, "nation": 3, "natur": 3, "nbad": 3, "nc_val": 3, "ndarrai": 3, "ndim": 3, "need": [2, 3, 16], "neg": 3, "negative_binomi": 3, "negative_binomial_distribut": 3, "negativebinomialdistribut": 3, "new": [1, 3, 16], "next": 16, "nf": 3, "ngood": 3, "nice": 0, "nine": 3, "nist": 3, "non": [0, 1, 3, 5, 11], "nonc": 3, "noncentr": 3, "noncentral_chi": 3, "noncentral_chisquar": 3, "noncentral_f": 3, "noncentralf": 3, "nondeterm": [3, 5], "none": 3, "nonneg": 3, "norm": 3, "normal": [3, 9], "normal_distribut": 3, "normalis": 3, "normed_i": 3, "north": 3, "note": 3, "notic": 3, "now": 3, "np": [0, 3, 16], "nr": 3, "nsamp": 3, "nsampl": [3, 9], "nskip": [0, 3], "nstream": [0, 3], "null": 3, "num": 3, "number": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "numer": 3, "numpi": [0, 2, 3, 16], "o": 3, "ob": 3, "object": 3, "observ": 3, "obtain": 3, "occup": 3, "occur": 3, "occurr": 3, "often": [3, 16], "oil": 3, "omit": 3, "onc": [0, 3], "one": [0, 3, 16], "oneapi": [1, 3], "onemkl": [1, 3, 5], "ones": 3, "ones_lik": 3, "onli": 3, "open": [2, 3], "option": 3, "order": 3, "org": [2, 3, 16], "orient": [3, 5, 14], "origin": [0, 3], "oscil": 3, "ostrowski": 3, "other": [0, 3], "otherwis": [0, 3], "out": [1, 3], "outcom": 3, "output": [3, 16], "outsid": 3, "over": [0, 3], "overlap": 0, "own": 3, "p": 3, "p_": 3, "pack": 3, "packag": [1, 2, 16], "page": 3, "paper": 3, "papouli": 3, "parallel": [10, 15], "paramet": [3, 11], "parameter": 3, "parent": 3, "pareto": 3, "pareto_distribut": 3, "part": [3, 16], "particular": [0, 3], "partit": 0, "path": 2, "pattern": 3, "paul": 3, "pdf": 3, "peak": 3, "peebl": 3, "peopl": 3, "percent": 3, "percentag": 3, "perform": [0, 3], "period": 0, "permut": 3, "peter": 3, "peyton": 3, "philosophi": 3, "philox": 12, "philox4x32x10": [0, 3, 5], "phy": 3, "physic": 16, "pi": [3, 16], "pickl": 0, "pickleabl": 0, "piec": 3, "piglet": 3, "pip": 16, "place": 3, "platform": 3, "player": 3, "pleas": [0, 10, 15], "plot": 3, "plt": 3, "po": 3, "point": 3, "poisnorm": 3, "poisson": 3, "poisson_distribut": 3, "poisson_process": 3, "poissondistribut": 3, "polit": 3, "pooh": 3, "popul": [3, 16], "popular": 3, "posit": [0, 3], "possibl": 3, "post_draw": 0, "power": 3, "powerlaw": 3, "powpdf": 3, "pp": 3, "precis": 3, "present": 16, "press": 3, "pretti": 3, "previou": 16, "primer": 3, "principl": 3, "print": [3, 16], "prior": 3, "probabl": [3, 5, 16], "problem": [1, 3], "process": [1, 3], "prod_": 3, "produc": 0, "product": 3, "professor": 3, "project": [2, 3], "propag": 3, "proper": 3, "properti": [0, 3, 10, 15], "proport": 3, "propos": 3, "proprietari": 3, "provid": [0, 3, 11, 16], "psedo": 3, "pseudo": [0, 1, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15], "pseudonym": 3, "pseudorandom": 10, "psuedo": [3, 8, 10, 15, 16], "ptpe": 3, "publish": 3, "pull": 3, "pval": 3, "py": [2, 16], "pypi": 16, "pyplot": 3, "pytest": 2, "python": [0, 1, 2, 3, 16], "q": 3, "qualiti": 16, "quasi": 0, "quiglei": 3, "r": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "r250": [0, 3, 5], "rabbit": 3, "raindrop": 3, "rainfal": 3, "rainstorm": 3, "rais": [0, 3], "raj": 3, "rammler": 3, "rand": 3, "randint": [3, 4, 6, 7, 8, 10, 12, 13, 14, 15], "randint_untyp": 3, "randn": 3, "random": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "random_integ": 3, "random_random_intel": 3, "random_sampl": 3, "randomli": 3, "randomst": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "rang": 3, "rank": 3, "rate": 3, "rather": 3, "ratio": 3, "rayleigh": 3, "rayleigh_distribut": 3, "re": 3, "reach": 3, "read": 3, "real": 3, "reason": 3, "recip": 1, "recommend": 3, "recurs": [5, 8], "reduc": 3, "refer": [0, 1, 3, 10, 15], "refman2": 3, "region": 3, "regist": [5, 13], "reiss": 3, "reject": 3, "rel": 3, "relat": 3, "relationship": 3, "releas": 16, "relev": 3, "reli": [3, 16], "reliabl": 3, "remain": 3, "rememb": 0, "render": 2, "repeat": [3, 16], "repeatedli": 3, "replac": 3, "repo": [0, 2, 10, 15, 16], "report": 3, "repositori": 16, "repres": [3, 10, 15], "represent": 3, "reproduc": 11, "request": 3, "requir": [2, 3, 11, 16], "research": 3, "resembl": 3, "reshap": 3, "resourc": 3, "respect": 3, "restor": [0, 16], "restored_r": 0, "result": 3, "resumed_draw": 0, "retain": 16, "return": 3, "rewritten": 3, "rich": 3, "richard": 3, "riemann": 3, "right": 3, "roll": 3, "rosin": 3, "roughli": 3, "royal": 3, "rs0": [10, 15], "rs5": [10, 15], "rs_def": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "rs_vec": [4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "rule": 3, "run": [2, 3, 16], "rv": 3, "rvsp": 3, "s11": 3, "s_t": 3, "sai": 3, "same": [0, 3, 10, 15, 16], "sampl": [0, 1, 3, 5, 10, 15, 16], "sample_s": 16, "samuel": 3, "satisfi": 3, "save": 16, "scalar": [3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "scale": 3, "scienc": 3, "scipi": 3, "scrambl": 16, "script": 16, "second": 3, "section3": 3, "see": [3, 5], "seed": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "seem": 3, "seen": 3, "select": 3, "sematech": 3, "semidefinit": 3, "sensit": 3, "separ": [3, 16], "septemb": 3, "seqeuenc": 16, "sequenc": [0, 3, 16], "seri": 3, "set": [2, 3, 5, 10, 15, 16], "set_id": [10, 15], "set_stat": 3, "setup": 2, "setuptool": 2, "sev": 3, "sfmt19937": [0, 3, 5], "shape": 3, "sharper": 3, "she": 3, "shift": [3, 5, 13], "short": 3, "should": [3, 11], "show": 3, "shuffl": 3, "side": 3, "sigma": 3, "sign": 3, "signal": 3, "sim": 3, "simd": [5, 14], "similar": 3, "simpl": 16, "simplifi": 3, "simul": [0, 3, 11], "sinc": [3, 16], "singl": 3, "situat": 3, "six": 3, "size": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "skip": [0, 3], "skipahead": [0, 3], "small": 3, "smallest": 3, "so": [0, 2, 3, 16], "softwar": [3, 16], "solut": 3, "some": [0, 3], "sometim": [3, 16], "sort": 3, "sourc": [2, 5, 11, 16], "sourceforg": 3, "sp": 3, "space": 3, "speci": 3, "special": 3, "specif": 3, "specifi": [3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "spectral": 3, "speed": 3, "spheric": 3, "sphinx": 2, "spread": 3, "springer": 3, "sqrt": 3, "squar": 3, "square_distribut": 3, "stahel": 3, "standard": [3, 16], "standard_cauchi": 3, "standard_exponenti": 3, "standard_gamma": 3, "standard_norm": [0, 3], "standard_t": 3, "stanton": 3, "stasist": 0, "stat": 3, "state": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "statist": [0, 3, 10, 15, 16], "statu": 3, "std": 3, "stdev": 3, "stdlib": 3, "stegun": 3, "stephen": 3, "stochast": [3, 10, 11, 15, 16], "stock": 3, "stockholm": 3, "store": 16, "stork": 3, "str": 3, "stream": [0, 3, 5, 10, 15], "strength": 3, "string": 3, "student": 3, "studi": 3, "sub": 0, "subcommand": 3, "subsequ": 0, "succeed": 3, "success": 3, "suffici": 0, "suit": 2, "suitabl": [10, 15], "sum": [3, 16], "sum_": 3, "suppli": 3, "support": [0, 2, 3, 5], "suppos": 3, "sure": 2, "surprisingli": 3, "sy": 3, "symmetr": 3, "system": [3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "systemat": 3, "t": 3, "tabl": 3, "tail": 3, "take": [3, 16], "target": 3, "task": [0, 1], "technic": 3, "technologi": 3, "ten": 3, "tend": 3, "test": [2, 3, 16], "text": [3, 10, 15], "th": [3, 10, 15], "than": [0, 3], "thei": [1, 3], "them": 3, "theorem": 3, "theori": 3, "therefor": 3, "theta": 3, "thi": [0, 3, 10, 11, 15, 16], "third": 3, "thoma": 3, "those": [0, 3, 16], "thought": 3, "thousand": 3, "three": 3, "threw": 3, "through": [1, 3, 16], "throw": 3, "tight": 3, "tilt": 3, "time": 3, "tini": 3, "titl": 3, "togeth": 3, "token": 3, "tomaxint": 3, "tool": 3, "top": 3, "tragectori": 0, "translat": 3, "transpos": 3, "trial": 3, "triangular": 3, "triangular_distribut": 3, "true": [3, 16], "truncat": 3, "try": 3, "tupl": [3, 10, 15], "tutori": 1, "tweedi": 3, "twice": 3, "twister": [3, 5, 9, 10, 14], "two": [0, 3], "type": 3, "u": 3, "uint": 3, "uk": 3, "ukrain": 3, "unbias": 3, "unbound": 3, "undefin": 3, "under": 3, "underestim": 3, "underli": 3, "understand": 3, "unif": 3, "uniform": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "uniformli": 3, "uniqu": 3, "unit": 3, "univ": 3, "univari": 3, "univers": 3, "unless": 3, "unlik": [3, 16], "unsign": 3, "until": 3, "up": 3, "updat": 16, "upper": 3, "urandom": 3, "urn": 3, "us": [0, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], "usampl": 9, "user": [1, 3, 16], "usual": 16, "v": 3, "valu": [3, 16], "valueerror": [0, 3], "values2": 3, "vari": 3, "variabl": [2, 3], "varianc": 3, "variat": [3, 16], "varieti": 3, "variou": 16, "vector": [3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "veloc": 3, "veri": 3, "verifi": 3, "verlag": 3, "version": 3, "via": 16, "vilfredo": 3, "vol": 3, "volum": 3, "von": 3, "vonmis": 3, "w": 3, "wa": 3, "wai": 3, "wait": 3, "wald": 3, "wald_distribut": 3, "waloddi": 3, "want": [1, 3], "wave": 3, "we": [2, 3], "wealth": 3, "weapon": 3, "web": 3, "weib": 3, "weibul": 3, "weibull_distribut": 3, "weibull_max": 3, "weibull_min": 3, "weight": 3, "weisstein": 3, "welcom": 2, "well": 3, "were": [0, 3], "wh": [0, 3, 5, 15], "what": 3, "when": [0, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "where": [3, 10, 15], "wherea": 3, "whether": 3, "which": 3, "while": [0, 3, 5, 16], "white": 3, "who": 3, "wichmann": 5, "wide": 3, "width": 3, "wiki": 3, "wikipedia": 3, "wild": 3, "wilei": 3, "william": 3, "wind": 3, "window": 3, "within": 3, "without": 3, "wolfram": 3, "women": 3, "word": 3, "work": [2, 3, 16], "worker": 0, "world": 3, "would": [2, 3], "wrong": 3, "www": 3, "x": [3, 16], "x022sz": 3, "x85": 3, "x_0": 3, "x_1": 3, "x_2": 3, "x_i": 3, "x_j": 3, "x_n": 3, "x_p": 3, "xa4": 3, "xbf": 3, "xx": 3, "y": [3, 16], "y_": 3, "y_1": 3, "y_i": 3, "y_n": 3, "year": 3, "yield": 3, "york": 3, "you": [1, 2, 3], "your": 2, "z": 3, "zero": 3, "zeta": 3, "zetac": 3, "zipf": 3}, "titles": ["How-to Guides", "mkl_random: random numbers fast", "Contributing", "Class RandomState", "ARS5 brng", "mkl_random APIs", "MCG31 brng", "MCG59 brng", "MRG32k3a brng", "MT19937 brng", "MT2203 brng", "Nondeterm brng", "Philox4x32x10 brng", "R250 brng", "SFMT19937 brng", "Wichmann-Hill brng", "Beginner\u2019s guide"], "titleterms": {"": 16, "api": 5, "ars5": 4, "beginn": 16, "brng": [4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "class": 3, "comput": 0, "contribut": 2, "determinist": 16, "fast": 1, "first": 16, "gener": 16, "guid": [0, 16], "hill": 15, "how": 0, "instal": 16, "long": 0, "mcg31": 6, "mcg59": 7, "mkl_random": [1, 5], "mrg32k3a": 8, "mt19937": 9, "mt2203": 10, "multiprocess": 0, "non": 16, "nondeterm": 11, "number": 1, "parallel": 0, "philox4x32x10": 12, "pseudo": 16, "r250": 13, "random": [1, 16], "randomst": 3, "resum": 0, "save": 0, "sfmt19937": 14, "step": 16, "stochast": 0, "v": 16, "wichmann": 15}}) \ No newline at end of file diff --git a/tutorials.html b/tutorials.html index adf7e01..d3ddb25 100644 --- a/tutorials.html +++ b/tutorials.html @@ -5,7 +5,7 @@ - + Beginner’s guide - mkl_random 1.2.7 documentation @@ -446,7 +446,7 @@

Pseudo-random vs. non-deterministic generators - +