From bcf2d8fb6083143b2d87d79b70d9ccff4500f919 Mon Sep 17 00:00:00 2001 From: Om-A-osc Date: Fri, 3 Apr 2026 20:24:42 +0530 Subject: [PATCH 1/5] feat: add `stats/base/dists/anglit/variance` --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: passed - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: passed - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: passed - task: lint_python status: passed - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: passed - task: lint_c_benchmarks status: passed - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed --- --- .../base/dists/anglit/variance/README.md | 247 ++++++++++++++++++ .../anglit/variance/benchmark/benchmark.js | 59 +++++ .../variance/benchmark/benchmark.native.js | 69 +++++ .../anglit/variance/benchmark/c/Makefile | 87 ++++++ .../anglit/variance/benchmark/c/benchmark.c | 105 ++++++++ .../base/dists/anglit/variance/binding.gyp | 112 ++++++++ .../docs/img/equation_anglit_variance.svg | 4 + .../base/dists/anglit/variance/docs/repl.txt | 37 +++ .../anglit/variance/docs/types/index.d.ts | 57 ++++ .../dists/anglit/variance/docs/types/test.ts | 47 ++++ .../dists/anglit/variance/examples/c/Makefile | 87 ++++++ .../anglit/variance/examples/c/example.c | 40 +++ .../dists/anglit/variance/examples/index.js | 31 +++ .../base/dists/anglit/variance/include.gypi | 53 ++++ .../stdlib/stats/base/dists/anglit/variance.h | 38 +++ .../base/dists/anglit/variance/lib/index.js | 43 +++ .../base/dists/anglit/variance/lib/main.js | 75 ++++++ .../base/dists/anglit/variance/lib/native.js | 63 +++++ .../base/dists/anglit/variance/manifest.json | 77 ++++++ .../base/dists/anglit/variance/package.json | 70 +++++ .../base/dists/anglit/variance/src/Makefile | 70 +++++ .../base/dists/anglit/variance/src/addon.c | 22 ++ .../base/dists/anglit/variance/src/main.c | 45 ++++ .../fixtures/python/large_mu_large_sigma.json | 1 + .../fixtures/python/large_mu_small_sigma.json | 1 + .../variance/test/fixtures/python/runner.py | 85 ++++++ .../fixtures/python/small_mu_large_sigma.json | 1 + .../fixtures/python/small_mu_small_sigma.json | 1 + .../base/dists/anglit/variance/test/test.js | 145 ++++++++++ .../dists/anglit/variance/test/test.native.js | 154 +++++++++++ 30 files changed, 1926 insertions(+) create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/README.md create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/benchmark.js create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/benchmark.native.js create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/c/Makefile create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/c/benchmark.c create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/binding.gyp create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/img/equation_anglit_variance.svg create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/c/Makefile create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/c/example.c create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/index.js create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/include.gypi create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/include/stdlib/stats/base/dists/anglit/variance.h create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/lib/index.js create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/lib/main.js create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/lib/native.js create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/manifest.json create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/package.json create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/src/Makefile create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/src/addon.c create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/src/main.c create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_large_sigma.json create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_small_sigma.json create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/runner.py create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_large_sigma.json create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_small_sigma.json create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.js create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.native.js diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/README.md b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/README.md new file mode 100644 index 000000000000..674e96938681 --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/README.md @@ -0,0 +1,247 @@ + + +# Variance + +> [Anglit][anglit-distribution] distribution [variance][variance]. + + + +
+ +The [variance][variance] for an [anglit][anglit-distribution] random variable with location parameter `mu` and scale parameter `sigma` is + + + +```math +\mathop{\mathrm{Var}}\left( X \right) = \sigma^{2}\left({\frac{\pi^{2}}{16}}-{\frac{1}{2}}\right) +``` + + + +
+ + + + + +
+ +## Usage + +```javascript +var variance = require( '@stdlib/stats/base/dists/anglit/variance' ); +``` + +#### variance( mu, sigma ) + +Returns the [variance][variance] for an [anglit][anglit-distribution] distribution with location parameter `mu` and scale parameter `sigma`. + +```javascript +var y = variance( 0.0, 1.0 ); +// returns ~0.117 + +y = variance( 1.0, 2.0 ); +// returns ~0.467 + +y = variance( -3.0, 4.0 ); +// returns ~1.870 +``` + +If provided `NaN` as any argument, the function returns `NaN`. + +```javascript +var y = variance( NaN, 1.0 ); +// returns NaN + +y = variance( 0.0, NaN ); +// returns NaN +``` + +If provided `sigma <= 0`, the function returns `NaN`. + +```javascript +var y = variance( 0.0, 0.0 ); +// returns NaN + +y = variance( 0.0, -1.0 ); +// returns NaN +``` + +
+ + + + + +
+ +
+ + + + + +
+ +## Examples + + + +```javascript +var uniform = require( '@stdlib/random/array/uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); +var variance = require( '@stdlib/stats/base/dists/anglit/variance' ); + +var opts = { + 'dtype': 'float64' +}; +var mu = uniform( 10, -5.0, 5.0, opts ); +var sigma = uniform( 10, 0.1, 20.0, opts ); + +logEachMap( 'µ: %0.4f, σ: %0.4f, Var(X;µ,σ): %0.4f', mu, sigma, variance ); +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/stats/base/dists/anglit/variance.h" +``` + +#### stdlib_base_dists_anglit_variance( mu, sigma ) + +Returns the variance for an anglit distribution with location `mu` and scale `sigma`. + +```c +double out = stdlib_base_dists_anglit_variance( 0.0, 1.0 ); +// returns ~0.117 +``` + +The function accepts the following arguments: + +- **mu**: `[in] double` location parameter. +- **sigma**: `[in] double` scale parameter. + +```c +double stdlib_base_dists_anglit_variance( const double mu, const double sigma ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/stats/base/dists/anglit/variance.h" +#include +#include + +static double random_uniform( const double min, const double max ) { + double v = (double)rand() / ( (double)RAND_MAX + 1.0 ); + return min + ( v*(max-min) ); +} + +int main( void ) { + double mu; + double sigma; + double y; + int i; + + for ( i = 0; i < 25; i++ ) { + mu = random_uniform( -5.0, 5.0 ); + sigma = random_uniform( 0.1, 20.0 ); + y = stdlib_base_dists_anglit_variance( mu, sigma ); + printf( "µ: %lf, σ: %lf, Var(X;µ,σ): %lf\n", mu, sigma, y ); + } +} +``` + +
+ + + +
+ + + + + +
+ +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/benchmark.js b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/benchmark.js new file mode 100644 index 000000000000..6fc9ed7b3bb5 --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/benchmark.js @@ -0,0 +1,59 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var bench = require( '@stdlib/bench' ); +var uniform = require( '@stdlib/random/array/uniform' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var EPS = require( '@stdlib/constants/float64/eps' ); +var pkg = require( './../package.json' ).name; +var variance = require( './../lib' ); + + +// MAIN // + +bench( pkg, function benchmark( b ) { + var sigma; + var opts; + var mu; + var y; + var i; + + opts = { + 'dtype': 'float64' + }; + mu = uniform( 100, -50.0, 50.0, opts ); + sigma = uniform( 100, EPS, 20.0, opts ); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + y = variance( mu[ i % mu.length ], sigma[ i % sigma.length ] ); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/benchmark.native.js new file mode 100644 index 000000000000..f22f7628b546 --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/benchmark.native.js @@ -0,0 +1,69 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var bench = require( '@stdlib/bench' ); +var tryRequire = require( '@stdlib/utils/try-require' ); +var uniform = require( '@stdlib/random/array/uniform' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var EPS = require( '@stdlib/constants/float64/eps' ); +var format = require( '@stdlib/string/format' ); +var pkg = require( './../package.json' ).name; + + +// VARIABLES // + +var variance = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( variance instanceof Error ) +}; + + +// MAIN // + +bench( format( '%s::native', pkg ), opts, function benchmark( b ) { + var sigma; + var opts; + var mu; + var y; + var i; + + opts = { + 'dtype': 'float64' + }; + mu = uniform( 100, -50.0, 50.0, opts ); + sigma = uniform( 100, EPS, 20.0, opts ); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + y = variance( mu[ i % mu.length ], sigma[ i % sigma.length ] ); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/c/Makefile b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/c/Makefile new file mode 100644 index 000000000000..77797913103d --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/c/Makefile @@ -0,0 +1,87 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +INCLUDE ?= +SOURCE_FILES ?= +LIBRARIES ?= +LIBPATH ?= + +c_targets := benchmark.out + + +# RULES # + +all: $(c_targets) + +.PHONY: all + +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/c/benchmark.c new file mode 100644 index 000000000000..ed66653a0604 --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/c/benchmark.c @@ -0,0 +1,105 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/stats/base/dists/anglit/variance.h" +#include "stdlib/constants/float64/eps.h" +#include +#include +#include +#include + +#define NAME "anglit-variance" +#define ITERATIONS 1000000 +#define REPEATS 3 + +static void print_version( void ) { + printf( "TAP version 13\n" ); +} + +static void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +static void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +static double tic( void ) { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec/1.0e6; +} + +static double random_uniform( const double min, const double max ) { + double v = (double)rand() / ( (double)RAND_MAX + 1.0 ); + return min + ( v*(max-min) ); +} + +static double benchmark( void ) { + double elapsed; + double mu[ 100 ]; + double sigma[ 100 ]; + double y; + double t; + int i; + + for ( i = 0; i < 100; i++ ) { + mu[ i ] = random_uniform( -50.0, 50.0 ); + sigma[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 ); + } + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + y = stdlib_base_dists_anglit_variance( mu[ i % 100 ], sigma[ i % 100 ] ); + if ( y != y ) { + printf( "should not return NaN\n" ); + break; + } + } + elapsed = tic() - t; + if ( y != y ) { + printf( "should not return NaN\n" ); + } + return elapsed; +} + +int main( void ) { + double elapsed; + int i; + + srand( time( NULL ) ); + + print_version(); + for ( i = 0; i < REPEATS; i++ ) { + printf( "# c::%s\n", NAME ); + elapsed = benchmark(); + print_results( elapsed ); + printf( "ok %d benchmark finished\n", i+1 ); + } + print_summary( REPEATS, REPEATS ); +} diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/binding.gyp b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/binding.gyp new file mode 100644 index 000000000000..7a682db305fc --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/binding.gyp @@ -0,0 +1,112 @@ +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A `.gyp` file for building a Node.js native add-on. +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + 'includes': [ + './include.gypi', + ], + 'variables': { + 'addon_target_name%': 'addon', + 'conditions': [ + [ + 'OS=="win"', + { + 'obj': 'obj', + }, + { + 'obj': 'o', + } + ], + ], + }, + 'targets': [ + { + 'target_name': '<(addon_target_name)', + 'dependencies': [], + 'include_dirs': [ + '<@(include_dirs)', + ], + 'sources': [ + '<@(src_files)', + ], + 'link_settings': { + 'libraries': [ + '<@(libraries)', + ], + 'library_dirs': [ + '<@(library_dirs)', + ], + }, + 'cflags': [ + '-Wall', + '-O3', + ], + 'cflags_c': [ + '-std=c99', + ], + 'cflags_cpp': [ + '-std=c++11', + ], + 'ldflags': [], + 'conditions': [ + [ + 'OS=="mac"', + { + 'ldflags': [ + '-undefined dynamic_lookup', + '-Wl,-no-pie', + '-Wl,-search_paths_first', + ], + }, + ], + [ + 'OS!="win"', + { + 'cflags': [ + '-fPIC', + ], + }, + ], + ], + }, + { + 'target_name': 'copy_addon', + 'type': 'none', + 'dependencies': [ + '<(addon_target_name)', + ], + 'actions': [ + { + 'action_name': 'copy_addon', + 'message': 'Copying addon...', + 'inputs': [], + 'outputs': [ + '<(addon_output_dir)/<(addon_target_name).node', + ], + 'action': [ + 'cp', + '<(PRODUCT_DIR)/<(addon_target_name).node', + '<(addon_output_dir)/<(addon_target_name).node', + ], + }, + ], + }, + ], +} diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/img/equation_anglit_variance.svg b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/img/equation_anglit_variance.svg new file mode 100644 index 000000000000..dcb058c6c92b --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/img/equation_anglit_variance.svg @@ -0,0 +1,4 @@ + + + Var(X) = σ²(π²/16 - 1/2) + diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/repl.txt b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/repl.txt new file mode 100644 index 000000000000..313d4b912b9f --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/repl.txt @@ -0,0 +1,37 @@ + +{{alias}}( μ, σ ) + Returns the variance of an anglit distribution with location parameter + `μ` and scale parameter `σ`. + + If provided `NaN` as any argument, the function returns `NaN`. + + If provided `σ <= 0`, the function returns `NaN`. + + Parameters + ---------- + μ: number + Location parameter. + + σ: number + Scale parameter. + + Returns + ------- + out: number + Variance. + + Examples + -------- + > var y = {{alias}}( 0.0, 1.0 ) + ~0.117 + > y = {{alias}}( 4.0, 2.0 ) + ~0.467 + > y = {{alias}}( NaN, 1.0 ) + NaN + > y = {{alias}}( 0.0, NaN ) + NaN + > y = {{alias}}( 0.0, 0.0 ) + NaN + + See Also + -------- diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/types/index.d.ts b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/types/index.d.ts new file mode 100644 index 000000000000..66db0d2a2e5c --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/types/index.d.ts @@ -0,0 +1,57 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +// TypeScript Version: 4.1 + +/** +* Returns the variance for an anglit distribution with location `mu` and scale `sigma`. +* +* ## Notes +* +* - If `sigma <= 0`, the function returns `NaN`. +* +* @param mu - location parameter +* @param sigma - scale parameter +* @returns variance +* +* @example +* var y = variance( 0.0, 1.0 ); +* // returns ~0.117 +* +* @example +* var y = variance( 2.0, 4.0 ); +* // returns ~1.870 +* +* @example +* var y = variance( NaN, 1.0 ); +* // returns NaN +* +* @example +* var y = variance( 0.0, NaN ); +* // returns NaN +* +* @example +* var y = variance( 0.0, 0.0 ); +* // returns NaN +*/ +declare function variance( mu: number, sigma: number ): number; + + +// EXPORTS // + +export = variance; diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/types/test.ts b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/types/test.ts new file mode 100644 index 000000000000..a1a9c0f0ecf2 --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/types/test.ts @@ -0,0 +1,47 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import variance = require( './index' ); + + +// TESTS // + +{ + variance( 0, 1 ); // $ExpectType number +} + +{ + variance( true, 1 ); // $ExpectError + variance( false, 1 ); // $ExpectError + variance( '5', 1 ); // $ExpectError + variance( [], 1 ); // $ExpectError + variance( {}, 1 ); // $ExpectError + variance( ( x: number ): number => x, 1 ); // $ExpectError + + variance( 1, true ); // $ExpectError + variance( 1, false ); // $ExpectError + variance( 1, '5' ); // $ExpectError + variance( 1, [] ); // $ExpectError + variance( 1, {} ); // $ExpectError + variance( 1, ( x: number ): number => x ); // $ExpectError +} + +{ + variance(); // $ExpectError + variance( 1 ); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/c/Makefile b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/c/Makefile new file mode 100644 index 000000000000..44ee674a1205 --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/c/Makefile @@ -0,0 +1,87 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +INCLUDE ?= +SOURCE_FILES ?= +LIBRARIES ?= +LIBPATH ?= + +c_targets := example.out + + +# RULES # + +all: $(c_targets) + +.PHONY: all + +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/c/example.c b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/c/example.c new file mode 100644 index 000000000000..774e63673306 --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/c/example.c @@ -0,0 +1,40 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/stats/base/dists/anglit/variance.h" +#include +#include + +static double random_uniform( const double min, const double max ) { + double v = (double)rand() / ( (double)RAND_MAX + 1.0 ); + return min + ( v*(max-min) ); +} + +int main( void ) { + double mu; + double sigma; + double y; + int i; + + for ( i = 0; i < 25; i++ ) { + mu = random_uniform( -5.0, 5.0 ); + sigma = random_uniform( 0.1, 20.0 ); + y = stdlib_base_dists_anglit_variance( mu, sigma ); + printf( "µ: %lf, σ: %lf, Var(X;µ,σ): %lf\n", mu, sigma, y ); + } +} diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/index.js b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/index.js new file mode 100644 index 000000000000..337267e545d9 --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/index.js @@ -0,0 +1,31 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +var uniform = require( '@stdlib/random/array/uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); +var variance = require( './../lib' ); + +var opts = { + 'dtype': 'float64' +}; +var mu = uniform( 10, -5.0, 5.0, opts ); +var sigma = uniform( 10, 0.1, 20.0, opts ); + +logEachMap( 'µ: %0.4f, σ: %0.4f, Var(X;µ,σ): %0.4f', mu, sigma, variance ); diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/include.gypi b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/include.gypi new file mode 100644 index 000000000000..bee8d41a2caf --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/include.gypi @@ -0,0 +1,53 @@ +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A GYP include file for building a Node.js native add-on. +# +# Main documentation: +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Source directory: + 'src_dir': './src', + + # Include directories: + 'include_dirs': [ + '=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdmath", + "statistics", + "stats", + "distribution", + "dist", + "anglit", + "continuous", + "symmetric", + "variance", + "dispersion", + "spread", + "univariate", + "location-scale" + ] +} diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/src/Makefile b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/src/Makefile new file mode 100644 index 000000000000..2caf905cedbe --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/src/Makefile @@ -0,0 +1,70 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + + +# RULES # + +#/ +# Removes generated files for building an add-on. +# +# @example +# make clean-addon +#/ +clean-addon: + $(QUIET) -rm -f *.o *.node + +.PHONY: clean-addon + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: clean-addon + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/src/addon.c b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/src/addon.c new file mode 100644 index 000000000000..4bd9600ced3e --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/src/addon.c @@ -0,0 +1,22 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/stats/base/dists/anglit/variance.h" +#include "stdlib/math/base/napi/binary.h" + +STDLIB_MATH_BASE_NAPI_MODULE_DD_D( stdlib_base_dists_anglit_variance ) diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/src/main.c b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/src/main.c new file mode 100644 index 000000000000..388e8405e7ca --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/src/main.c @@ -0,0 +1,45 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/stats/base/dists/anglit/variance.h" +#include "stdlib/math/base/assert/is_nan.h" + +// (π^2/16) - (1/2): +static const double scalar = 0.11685027506808487; + +/** +* Returns the variance for an anglit distribution with location `mu` and scale `sigma`. +* +* @param mu location parameter +* @param sigma scale parameter +* @return variance +* +* @example +* double y = stdlib_base_dists_anglit_variance( 0.0, 1.0 ); +* // returns ~0.117 +*/ +double stdlib_base_dists_anglit_variance( const double mu, const double sigma ) { + if ( + stdlib_base_is_nan( mu ) || + stdlib_base_is_nan( sigma ) || + sigma <= 0.0 + ) { + return 0.0 / 0.0; // NaN + } + return ( sigma * sigma ) * scalar; +} diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_large_sigma.json b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_large_sigma.json new file mode 100644 index 000000000000..8ba9906037aa --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_large_sigma.json @@ -0,0 +1 @@ +{"mu": [-100.0, -99.59919839679358, -99.19839679358718, -98.79759519038076, -98.39679358717434, -97.99599198396794, -97.59519038076152, -97.1943887775551, -96.7935871743487, -96.39278557114228, -95.99198396793587, -95.59118236472946, -95.19038076152304, -94.78957915831663, -94.38877755511022, -93.9879759519038, -93.58717434869739, -93.18637274549098, -92.78557114228457, -92.38476953907815, -91.98396793587175, -91.58316633266533, -91.18236472945893, -90.78156312625251, -90.38076152304609, -89.97995991983967, -89.57915831663327, -89.17835671342685, -88.77755511022045, -88.37675350701403, -87.97595190380761, -87.5751503006012, -87.17434869739479, -86.77354709418837, -86.37274549098197, -85.97194388777555, -85.57114228456913, -85.17034068136273, -84.76953907815631, -84.3687374749499, -83.96793587174349, -83.56713426853707, -83.16633266533066, -82.76553106212424, -82.36472945891784, -81.96392785571142, -81.56312625250501, -81.1623246492986, -80.76152304609218, -80.36072144288578, -79.95991983967936, -79.55911823647294, -79.15831663326654, -78.75751503006012, -78.3567134268537, -77.9559118236473, -77.55511022044088, -77.15430861723446, -76.75350701402806, -76.35270541082164, -75.95190380761522, -75.55110220440882, -75.1503006012024, -74.749498997996, -74.34869739478958, -73.94789579158316, -73.54709418837675, -73.14629258517034, -72.74549098196393, -72.34468937875752, -71.9438877755511, -71.54308617234469, -71.14228456913827, -70.74148296593187, -70.34068136272545, -69.93987975951904, -69.53907815631263, -69.13827655310621, -68.73747494989979, -68.33667334669339, -67.93587174348697, -67.53507014028057, -67.13426853707415, -66.73346693386773, -66.33266533066131, -65.93186372745491, -65.53106212424849, -65.13026052104209, -64.72945891783567, -64.32865731462925, -63.92785571142284, -63.52705410821643, -63.12625250501002, -62.725450901803605, -62.324649298597194, -61.92384769539078, -61.523046092184366, -61.122244488977955, -60.721442885771545, -60.32064128256513, -59.91983967935872, -59.519038076152306, -59.11823647294589, -58.71743486973948, -58.31663326653307, -57.91583166332665, -57.51503006012024, -57.11422845691383, -56.71342685370741, -56.312625250501, -55.91182364729459, -55.51102204408817, -55.11022044088176, -54.70941883767535, -54.30861723446893, -53.90781563126252, -53.50701402805611, -53.1062124248497, -52.705410821643284, -52.30460921843687, -51.90380761523046, -51.503006012024045, -51.102204408817634, -50.701402805611224, -50.300601202404806, -49.899799599198396, -49.498997995991985, -49.09819639278557, -48.69739478957916, -48.296593186372746, -47.89579158316633, -47.49498997995992, -47.09418837675351, -46.69338677354709, -46.29258517034068, -45.89178356713427, -45.49098196392785, -45.09018036072144, -44.68937875751503, -44.28857715430861, -43.8877755511022, -43.48697394789579, -43.08617234468938, -42.68537074148296, -42.28456913827655, -41.88376753507014, -41.482965931863724, -41.08216432865731, -40.6813627254509, -40.280561122244485, -39.879759519038075, -39.478957915831664, -39.07815631262525, -38.677354709418836, -38.276553106212425, -37.87575150300601, -37.4749498997996, -37.07414829659319, -36.67334669338677, -36.27254509018036, -35.87174348697394, -35.47094188376754, -35.07014028056112, -34.6693386773547, -34.2685370741483, -33.86773547094188, -33.46693386773546, -33.06613226452906, -32.66533066132264, -32.264529058116224, -31.86372745490982, -31.462925851703403, -31.062124248496986, -30.661322645290582, -30.260521042084164, -29.859719438877747, -29.458917835671343, -29.058116232464926, -28.657314629258508, -28.256513026052104, -27.855711422845687, -27.454909819639283, -27.054108216432866, -26.653306613226448, -26.252505010020045, -25.851703406813627, -25.45090180360721, -25.050100200400806, -24.649298597194388, -24.24849699398797, -23.847695390781567, -23.44689378757515, -23.04609218436873, -22.645290581162328, -22.24448897795591, -21.843687374749493, -21.44288577154309, -21.04208416833667, -20.641282565130254, -20.24048096192385, -19.839679358717433, -19.438877755511015, -19.038076152304612, -18.637274549098194, -18.236472945891776, -17.835671342685373, -17.434869739478955, -17.034068136272538, -16.633266533066134, -16.232464929859717, -15.831663326653299, -15.430861723446895, -15.030060120240478, -14.62925851703406, -14.228456913827657, -13.827655310621239, -13.426853707414821, -13.026052104208418, -12.625250501002, -12.224448897795583, -11.823647294589179, -11.422845691382761, -11.022044088176344, -10.62124248496994, -10.220440881763523, -9.819639278557105, -9.418837675350701, -9.018036072144284, -8.617234468937866, -8.216432865731463, -7.815631262525045, -7.414829659318642, -7.014028056112224, -6.613226452905806, -6.212424849699403, -5.811623246492985, -5.4108216432865675, -5.010020040080164, -4.609218436873746, -4.208416833667329, -3.807615230460925, -3.4068136272545075, -3.00601202404809, -2.6052104208416864, -2.2044088176352687, -1.803607214428851, -1.4028056112224476, -1.00200400801603, -0.6012024048096123, -0.20040080160320883, 0.20040080160320883, 0.6012024048096265, 1.00200400801603, 1.4028056112224476, 1.8036072144288653, 2.2044088176352687, 2.6052104208416864, 3.006012024048104, 3.4068136272545075, 3.807615230460925, 4.208416833667343, 4.609218436873746, 5.010020040080164, 5.410821643286582, 5.811623246492985, 6.212424849699403, 6.6132264529058205, 7.014028056112224, 7.414829659318642, 7.815631262525059, 8.216432865731463, 8.61723446893788, 9.018036072144298, 9.418837675350701, 9.81963927855712, 10.220440881763537, 10.62124248496994, 11.022044088176358, 11.422845691382776, 11.823647294589179, 12.224448897795597, 12.625250501002014, 13.026052104208418, 13.426853707414836, 13.827655310621239, 14.228456913827657, 14.629258517034074, 15.030060120240478, 15.430861723446895, 15.831663326653313, 16.232464929859717, 16.633266533066134, 17.034068136272552, 17.434869739478955, 17.835671342685373, 18.23647294589179, 18.637274549098194, 19.038076152304612, 19.43887775551103, 19.839679358717433, 20.24048096192385, 20.64128256513027, 21.04208416833667, 21.44288577154309, 21.843687374749507, 22.24448897795591, 22.645290581162328, 23.046092184368746, 23.44689378757515, 23.847695390781567, 24.248496993987985, 24.649298597194388, 25.050100200400806, 25.450901803607223, 25.851703406813627, 26.252505010020045, 26.653306613226462, 27.054108216432866, 27.454909819639283, 27.8557114228457, 28.25651302605212, 28.657314629258508, 29.058116232464926, 29.458917835671343, 29.85971943887776, 30.26052104208418, 30.661322645290596, 31.062124248496986, 31.462925851703403, 31.86372745490982, 32.26452905811624, 32.665330661322656, 33.066132264529074, 33.46693386773546, 33.86773547094188, 34.2685370741483, 34.669338677354716, 35.070140280561134, 35.47094188376755, 35.87174348697394, 36.27254509018036, 36.673346693386776, 37.074148296593194, 37.47494989979961, 37.87575150300603, 38.27655310621242, 38.677354709418836, 39.078156312625254, 39.47895791583167, 39.87975951903809, 40.28056112224451, 40.681362725450896, 41.08216432865731, 41.48296593186373, 41.88376753507015, 42.28456913827657, 42.685370741482984, 43.08617234468937, 43.48697394789579, 43.88777555110221, 44.288577154308626, 44.689378757515044, 45.09018036072143, 45.49098196392785, 45.89178356713427, 46.292585170340686, 46.693386773547104, 47.09418837675352, 47.49498997995991, 47.89579158316633, 48.296593186372746, 48.697394789579164, 49.09819639278558, 49.498997995992, 49.89979959919839, 50.300601202404806, 50.701402805611224, 51.10220440881764, 51.50300601202406, 51.90380761523048, 52.304609218436866, 52.705410821643284, 53.1062124248497, 53.50701402805612, 53.90781563126254, 54.308617234468954, 54.709418837675344, 55.11022044088176, 55.51102204408818, 55.9118236472946, 56.312625250501014, 56.71342685370743, 57.11422845691382, 57.51503006012024, 57.91583166332666, 58.316633266533074, 58.71743486973949, 59.11823647294591, 59.5190380761523, 59.91983967935872, 60.320641282565134, 60.72144288577155, 61.12224448897797, 61.52304609218439, 61.923847695390776, 62.324649298597194, 62.72545090180361, 63.12625250501003, 63.52705410821645, 63.927855711422865, 64.32865731462925, 64.72945891783567, 65.13026052104209, 65.5310621242485, 65.93186372745492, 66.33266533066131, 66.73346693386773, 67.13426853707415, 67.53507014028057, 67.93587174348698, 68.3366733466934, 68.73747494989979, 69.13827655310621, 69.53907815631263, 69.93987975951904, 70.34068136272546, 70.74148296593188, 71.14228456913827, 71.54308617234469, 71.9438877755511, 72.34468937875752, 72.74549098196394, 73.14629258517036, 73.54709418837675, 73.94789579158316, 74.34869739478958, 74.749498997996, 75.15030060120242, 75.55110220440883, 75.95190380761522, 76.35270541082164, 76.75350701402806, 77.15430861723448, 77.5551102204409, 77.95591182364731, 78.3567134268537, 78.75751503006012, 79.15831663326654, 79.55911823647295, 79.95991983967937, 80.36072144288579, 80.76152304609218, 81.1623246492986, 81.56312625250501, 81.96392785571143, 82.36472945891785, 82.76553106212427, 83.16633266533066, 83.56713426853707, 83.96793587174349, 84.36873747494991, 84.76953907815633, 85.17034068136272, 85.57114228456913, 85.97194388777555, 86.37274549098197, 86.77354709418839, 87.1743486973948, 87.5751503006012, 87.97595190380761, 88.37675350701403, 88.77755511022045, 89.17835671342687, 89.57915831663328, 89.97995991983967, 90.38076152304609, 90.78156312625251, 91.18236472945893, 91.58316633266534, 91.98396793587176, 92.38476953907815, 92.78557114228457, 93.18637274549098, 93.5871743486974, 93.98797595190382, 94.38877755511024, 94.78957915831663, 95.19038076152304, 95.59118236472946, 95.99198396793588, 96.3927855711423, 96.79358717434872, 97.1943887775551, 97.59519038076152, 97.99599198396794, 98.39679358717436, 98.79759519038078, 99.1983967935872, 99.59919839679358, 100.0], "sigma": [1.0, 1.0180360721442885, 1.0360721442885772, 1.0541082164328657, 1.0721442885771544, 1.0901803607214429, 1.1082164328657313, 1.12625250501002, 1.1442885771543085, 1.1623246492985972, 1.1803607214428857, 1.1983967935871744, 1.216432865731463, 1.2344689378757514, 1.25250501002004, 1.2705410821643286, 1.2885771543086173, 1.3066132264529058, 1.3246492985971945, 1.342685370741483, 1.3607214428857715, 1.3787575150300602, 1.3967935871743486, 1.4148296593186374, 1.4328657314629258, 1.4509018036072145, 1.468937875751503, 1.4869739478957915, 1.5050100200400802, 1.5230460921843687, 1.5410821643286572, 1.559118236472946, 1.5771543086172346, 1.595190380761523, 1.6132264529058116, 1.6312625250501003, 1.6492985971943888, 1.6673346693386772, 1.685370741482966, 1.7034068136272547, 1.7214428857715431, 1.7394789579158316, 1.7575150300601203, 1.7755511022044088, 1.7935871743486973, 1.811623246492986, 1.8296593186372747, 1.8476953907815632, 1.8657314629258517, 1.8837675350701404, 1.9018036072144289, 1.9198396793587174, 1.937875751503006, 1.9559118236472948, 1.9739478957915833, 1.9919839679358717, 2.0100200400801604, 2.0280561122244487, 2.0460921843687374, 2.064128256513026, 2.0821643286573144, 2.1002004008016035, 2.118236472945892, 2.1362725450901805, 2.154308617234469, 2.1723446893787575, 2.190380761523046, 2.208416833667335, 2.226452905811623, 2.244488977955912, 2.2625250501002006, 2.280561122244489, 2.2985971943887775, 2.3166332665330662, 2.3346693386773545, 2.3527054108216436, 2.370741482965932, 2.38877755511022, 2.4068136272545093, 2.4248496993987976, 2.4428857715430863, 2.460921843687375, 2.4789579158316633, 2.496993987975952, 2.5150300601202407, 2.533066132264529, 2.5511022044088176, 2.5691382765531063, 2.5871743486973946, 2.6052104208416837, 2.623246492985972, 2.6412825651302603, 2.6593186372745494, 2.6773547094188377, 2.6953907815631264, 2.713426853707415, 2.7314629258517034, 2.749498997995992, 2.7675350701402808, 2.785571142284569, 2.8036072144288577, 2.8216432865731464, 2.8396793587174347, 2.8577154308617234, 2.875751503006012, 2.8937875751503004, 2.9118236472945895, 2.929859719438878, 2.9478957915831665, 2.965931863727455, 2.9839679358717435, 3.002004008016032, 3.020040080160321, 3.038076152304609, 3.056112224448898, 3.0741482965931866, 3.092184368737475, 3.1102204408817635, 3.1282565130260522, 3.146292585170341, 3.164328657314629, 3.182364729458918, 3.2004008016032066, 3.218436873747495, 3.2364729458917836, 3.2545090180360723, 3.272545090180361, 3.2905811623246493, 3.308617234468938, 3.3266533066132267, 3.344689378757515, 3.3627254509018036, 3.3807615230460923, 3.398797595190381, 3.4168336673346693, 3.434869739478958, 3.4529058116232467, 3.470941883767535, 3.4889779559118237, 3.5070140280561124, 3.525050100200401, 3.5430861723446894, 3.561122244488978, 3.579158316633267, 3.597194388777555, 3.6152304609218437, 3.6332665330661325, 3.651302605210421, 3.6693386773547094, 3.687374749498998, 3.705410821643287, 3.723446893787575, 3.741482965931864, 3.7595190380761525, 3.7775551102204408, 3.7955911823647295, 3.813627254509018, 3.831663326653307, 3.849699398797595, 3.867735470941884, 3.8857715430861726, 3.903807615230461, 3.9218436873747495, 3.9398797595190382, 3.957915831663327, 3.975951903807615, 3.993987975951904, 4.012024048096192, 4.030060120240481, 4.04809619238477, 4.066132264529058, 4.084168336673347, 4.102204408817635, 4.1202404809619235, 4.138276553106213, 4.156312625250501, 4.174348697394789, 4.192384769539078, 4.2104208416833675, 4.228456913827655, 4.246492985971944, 4.264529058116233, 4.2825651302605205, 4.30060120240481, 4.318637274549099, 4.336673346693387, 4.354709418837675, 4.3727454909819645, 4.390781563126253, 4.408817635270541, 4.42685370741483, 4.4448897795591185, 4.462925851703407, 4.480961923847696, 4.498997995991984, 4.517034068136272, 4.5350701402805615, 4.55310621242485, 4.571142284569138, 4.589178356713427, 4.6072144288577155, 4.625250501002004, 4.643286573146293, 4.661322645290581, 4.679358717434869, 4.697394789579159, 4.715430861723447, 4.733466933867735, 4.751503006012024, 4.769539078156313, 4.787575150300601, 4.80561122244489, 4.823647294589179, 4.841683366733466, 4.859719438877756, 4.877755511022045, 4.895791583166333, 4.913827655310621, 4.93186372745491, 4.949899799599199, 4.967935871743487, 4.985971943887776, 5.004008016032064, 5.022044088176353, 5.040080160320642, 5.05811623246493, 5.076152304609218, 5.094188376753507, 5.112224448897796, 5.130260521042084, 5.148296593186373, 5.166332665330661, 5.18436873747495, 5.202404809619239, 5.220440881763527, 5.238476953907816, 5.2565130260521045, 5.274549098196393, 5.292585170340682, 5.31062124248497, 5.328657314629258, 5.3466933867735476, 5.364729458917836, 5.382765531062124, 5.400801603206413, 5.4188376753507015, 5.43687374749499, 5.454909819639279, 5.472945891783567, 5.490981963927856, 5.509018036072145, 5.527054108216433, 5.545090180360722, 5.56312625250501, 5.5811623246492985, 5.599198396793588, 5.617234468937876, 5.635270541082164, 5.653306613226453, 5.671342685370742, 5.68937875751503, 5.707414829659319, 5.725450901803607, 5.7434869739478955, 5.761523046092185, 5.779559118236473, 5.797595190380762, 5.81563126252505, 5.833667334669339, 5.851703406813628, 5.869739478957916, 5.887775551102204, 5.9058116232464934, 5.923847695390782, 5.94188376753507, 5.959919839679359, 5.977955911823647, 5.995991983967936, 6.014028056112225, 6.032064128256513, 6.050100200400802, 6.0681362725450905, 6.086172344689379, 6.104208416833668, 6.122244488977956, 6.140280561122244, 6.158316633266534, 6.176352705410822, 6.19438877755511, 6.212424849699399, 6.2304609218436875, 6.248496993987976, 6.266533066132265, 6.284569138276553, 6.302605210420842, 6.320641282565131, 6.338677354709419, 6.356713426853708, 6.374749498997996, 6.3927855711422845, 6.410821643286574, 6.428857715430862, 6.44689378757515, 6.464929859719439, 6.482965931863728, 6.501002004008016, 6.519038076152305, 6.537074148296593, 6.5551102204408815, 6.573146292585171, 6.591182364729459, 6.609218436873748, 6.627254509018036, 6.645290581162325, 6.663326653306614, 6.681362725450902, 6.69939879759519, 6.7174348697394795, 6.735470941883768, 6.753507014028056, 6.771543086172345, 6.789579158316633, 6.807615230460922, 6.825651302605211, 6.843687374749499, 6.861723446893788, 6.8797595190380765, 6.897795591182365, 6.915831663326654, 6.933867735470942, 6.95190380761523, 6.96993987975952, 6.987975951903808, 7.006012024048096, 7.024048096192385, 7.0420841683366735, 7.060120240480962, 7.078156312625251, 7.096192384769539, 7.114228456913828, 7.132264529058117, 7.150300601202405, 7.168336673346694, 7.186372745490982, 7.2044088176352705, 7.22244488977956, 7.240480961923848, 7.258517034068136, 7.276553106212425, 7.294589178356714, 7.312625250501002, 7.330661322645291, 7.348697394789579, 7.3667334669338675, 7.384769539078157, 7.402805611222445, 7.420841683366734, 7.438877755511022, 7.456913827655311, 7.4749498997996, 7.492985971943888, 7.511022044088176, 7.5290581162324655, 7.547094188376754, 7.565130260521042, 7.583166332665331, 7.601202404809619, 7.619238476953908, 7.637274549098197, 7.655310621242485, 7.673346693386774, 7.6913827655310625, 7.709418837675351, 7.72745490981964, 7.745490981963928, 7.763527054108216, 7.781563126252506, 7.799599198396794, 7.817635270541082, 7.835671342685371, 7.8537074148296595, 7.871743486973948, 7.889779559118237, 7.907815631262525, 7.925851703406813, 7.943887775551103, 7.961923847695391, 7.97995991983968, 7.997995991983968, 8.016032064128257, 8.034068136272545, 8.052104208416834, 8.070140280561123, 8.08817635270541, 8.1062124248497, 8.124248496993989, 8.142284569138276, 8.160320641282565, 8.178356713426854, 8.196392785571142, 8.214428857715431, 8.23246492985972, 8.250501002004007, 8.268537074148297, 8.286573146292586, 8.304609218436873, 8.322645290581162, 8.340681362725451, 8.358717434869739, 8.376753507014028, 8.394789579158317, 8.412825651302605, 8.430861723446894, 8.448897795591183, 8.46693386773547, 8.484969939879761, 8.503006012024048, 8.521042084168336, 8.539078156312627, 8.557114228456914, 8.575150300601202, 8.593186372745492, 8.61122244488978, 8.629258517034067, 8.647294589178358, 8.665330661322646, 8.683366733466933, 8.701402805611224, 8.719438877755511, 8.737474949899799, 8.75551102204409, 8.773547094188377, 8.791583166332666, 8.809619238476955, 8.827655310621243, 8.845691382765532, 8.86372745490982, 8.881763527054108, 8.899799599198397, 8.917835671342687, 8.935871743486974, 8.953907815631263, 8.971943887775552, 8.98997995991984, 9.008016032064129, 9.026052104208418, 9.044088176352705, 9.062124248496994, 9.080160320641284, 9.098196392785571, 9.11623246492986, 9.13426853707415, 9.152304609218437, 9.170340681362726, 9.188376753507015, 9.206412825651302, 9.224448897795591, 9.24248496993988, 9.260521042084168, 9.278557114228457, 9.296593186372746, 9.314629258517034, 9.332665330661323, 9.350701402805612, 9.3687374749499, 9.386773547094188, 9.404809619238478, 9.422845691382767, 9.440881763527054, 9.458917835671343, 9.476953907815632, 9.49498997995992, 9.513026052104209, 9.531062124248498, 9.549098196392785, 9.567134268537075, 9.585170340681364, 9.603206412825651, 9.62124248496994, 9.63927855711423, 9.657314629258517, 9.675350701402806, 9.693386773547095, 9.711422845691382, 9.729458917835672, 9.74749498997996, 9.765531062124248, 9.783567134268537, 9.801603206412826, 9.819639278557114, 9.837675350701403, 9.855711422845692, 9.87374749498998, 9.891783567134269, 9.909819639278558, 9.927855711422845, 9.945891783567134, 9.963927855711423, 9.981963927855713, 10.0], "expected": [0.11685027506808487, 0.1211033264331077, 0.12543240056334448, 0.12983749745879514, 0.13431861711945975, 0.13887575954533823, 0.14350892473643062, 0.14821811269273696, 0.15300332341425718, 0.15786455690099138, 0.16280181315293943, 0.16781509217010143, 0.17290439395247734, 0.1780697185000671, 0.18331106581287085, 0.18862843589088849, 0.19402182873412005, 0.1994912443425655, 0.20503668271622494, 0.21065814385509818, 0.21635562775918535, 0.2221291344284865, 0.22797866386300153, 0.2339042160627305, 0.23990579102767332, 0.24598338875783016, 0.2521370092532008, 0.2583666525137854, 0.26467231853958395, 0.27105400733059637, 0.27751171888682263, 0.28404545320826297, 0.2906552102949172, 0.2973409901467852, 0.3041027927638672, 0.3109406181461632, 0.3178544662936729, 0.32484433720639666, 0.33191023088433436, 0.33905214732748595, 0.3462700865358514, 0.3535640485094308, 0.36093403324822415, 0.3683800407522313, 0.37590207102145246, 0.3835001240558875, 0.39117419985553653, 0.3989242984203994, 0.40675041975047616, 0.41465256384576693, 0.4226307307062715, 0.43068492033199, 0.4388151327229225, 0.4470213678790689, 0.45530362580042916, 0.4636619064870033, 0.4720962099387914, 0.48060653615579335, 0.4891928851380093, 0.4978552568854392, 0.5065936513980829, 0.5154080686759408, 0.5242985087190122, 0.5332649715272978, 0.5423074571007973, 0.5514259654395104, 0.5606204965434377, 0.5698910504125789, 0.5792376270469339, 0.588660226446503, 0.5981588486112859, 0.6077334935412825, 0.6173841612364933, 0.6271108516969179, 0.6369135649225564, 0.6467923009134092, 0.6567470596694754, 0.6667778411907554, 0.67688464547725, 0.687067472528958, 0.69732632234588, 0.707661194928016, 0.7180720902753658, 0.7285590083879296, 0.7391219492657074, 0.7497609129086988, 0.7604758993169044, 0.7712669084903239, 0.7821339404289571, 0.7930769951328047, 0.8040960726018657, 0.8151911728361405, 0.8263622958356299, 0.8376094416003326, 0.8489326101302495, 0.8603318014253805, 0.8718070154857248, 0.8833582523112835, 0.894985511902056, 0.9066887942580422, 0.9184680993792426, 0.930323427265657, 0.9422547779172848, 0.954262151334127, 0.9663455475161831, 0.9785049664634526, 0.9907404081759368, 1.0030518726536344, 1.015439359896546, 1.0279028699046717, 1.040442402678011, 1.0530579582165644, 1.0657495365203318, 1.0785171375893126, 1.091360761423508, 1.1042804080229172, 1.1172760773875396, 1.1303477695173767, 1.1434954844124274, 1.1567192220726923, 1.1700189824981708, 1.1833947656888633, 1.1968465716447698, 1.2103744003658898, 1.2239782518522242, 1.2376581261037725, 1.2514140231205346, 1.2652459429025105, 1.2791538854497004, 1.2931378507621043, 1.3071978388397216, 1.3213338496825535, 1.335545883290599, 1.3498339396638586, 1.364198018802332, 1.3786381207060192, 1.3931542453749206, 1.4077463928090355, 1.4224145630083644, 1.4371587559729075, 1.4519789717026645, 1.4668752101976352, 1.4818474714578198, 1.4968957554832185, 1.512020062273831, 1.5272203918296574, 1.542496744150698, 1.5578491192369524, 1.5732775170884201, 1.5887819377051022, 1.6043623810869985, 1.620018847234108, 1.635751336146432, 1.65155984782397, 1.6674443822667213, 1.6834049394746868, 1.6994415194478665, 1.71555412218626, 1.731742747689867, 1.7480073959586886, 1.7643480669927236, 1.7807647607919725, 1.7972574773564356, 1.8138262166861125, 1.8304709787810034, 1.8471917636411077, 1.8639885712664266, 1.880861401656959, 1.8978102548127058, 1.9148351307336657, 1.9319360294198398, 1.9491129508712286, 1.9663658950878304, 1.9836948620696462, 2.0010998518166767, 2.01858086432892, 2.0361378996063775, 2.05377095764905, 2.071480038456936, 2.0892651420300345, 2.1071262683683485, 2.125063417471876, 2.143076589340616, 2.161165783974572, 2.1793310013737415, 2.1975722415381242, 2.2158895044677207, 2.234282790162532, 2.2527520986225564, 2.271297429847795, 2.289918783838248, 2.308616160593914, 2.3273895601147943, 2.346238982400889, 2.3651644274521972, 2.384165895268719, 2.4032433858504554, 2.4223968991974054, 2.4416264353095682, 2.460931994186947, 2.480313575829538, 2.4997711802373437, 2.519304807410364, 2.538914457348597, 2.558600130052044, 2.5783618255207057, 2.5981995437545806, 2.6181132847536692, 2.638103048517973, 2.6581688350474906, 2.6783106443422198, 2.6985284764021653, 2.7188223312273245, 2.739192208817696, 2.759638109173283, 2.780160032294084, 2.800757978180098, 2.821431946831326, 2.842181938247769, 2.8630079524294243, 2.883909989376294, 2.904888049088379, 2.9259421315656757, 2.9470722368081876, 2.9682783648159132, 2.989560515588853, 3.0109186891270054, 3.032352885430374, 3.053863104498955, 3.0754493463327495, 3.0971116109317594, 3.118849898295982, 3.1406642084254184, 3.1625545413200697, 3.1845208969799343, 3.206563275405014, 3.228681676595306, 3.2508761005508124, 3.273146547271533, 3.2954930167574674, 3.3179155090086154, 3.340414024024978, 3.362988561806554, 3.385639122353343, 3.408365705665348, 3.431168311742565, 3.4540469405849965, 3.4770015921926434, 3.500032266565502, 3.5231389637035764, 3.546321683606863, 3.569580426275364, 3.59291519170908, 3.6163259799080087, 3.639812790872152, 3.663375624601509, 3.68701448109608, 3.7107293603558635, 3.7345202623808635, 3.7583871871710754, 3.7823301347265015, 3.806349105047143, 3.830444098132997, 3.8546151139840648, 3.8788621526003473, 3.9031852139818435, 3.927584298128554, 3.9520594050404774, 3.976610534717615, 4.001237687159967, 4.025940862367532, 4.0507200603403115, 4.075575281078306, 4.1005065245815135, 4.125513790849934, 4.15059707988357, 4.175756391682419, 4.200991726246481, 4.2263030835757585, 4.25169046367025, 4.2771538665299556, 4.302693292154873, 4.328308740545006, 4.3540002117003525, 4.379767705620913, 4.405611222306686, 4.431530761757676, 4.457526323973878, 4.483597908955293, 4.5097455167019245, 4.535969147213767, 4.562268800490825, 4.588644476533098, 4.615096175340582, 4.641623896913283, 4.668227641251196, 4.694907408354323, 4.721663198222665, 4.74849501085622, 4.775402846254989, 4.802386704418972, 4.82944658534817, 4.856582489042579, 4.883794415502205, 4.911082364727044, 4.938446336717096, 4.965886331472364, 4.993402348992843, 5.020994389278537, 5.048662452329446, 5.076406538145568, 5.104226646726905, 5.132122778073454, 5.160094932185218, 5.188143109062197, 5.2162673087043885, 5.244467531111793, 5.272743776284414, 5.3010960442222474, 5.329524334925294, 5.358028648393557, 5.38660898462703, 5.41526534362572, 5.4439977253896235, 5.47280612991874, 5.501690557213072, 5.530651007272616, 5.559687480097375, 5.588799975687348, 5.617988494042534, 5.647253035162934, 5.676593599048549, 5.706010185699378, 5.735502795115418, 5.765071427296676, 5.794716082243145, 5.824436759954829, 5.854233460431727, 5.884106183673839, 5.914054929681166, 5.944079698453704, 5.974180489991458, 6.004357304294426, 6.034610141362607, 6.064939001196002, 6.0953438837946115, 6.125824789158434, 6.156381717287471, 6.187014668181723, 6.217723641841187, 6.248508638265865, 6.279369657455759, 6.310306699410865, 6.341319764131185, 6.37240885161672, 6.403573961867468, 6.434815094883431, 6.466132250664607, 6.497525429210997, 6.528994630522601, 6.560539854599419, 6.59216110144145, 6.623858371048697, 6.655631663421156, 6.6874809785588285, 6.7194063164617175, 6.751407677129818, 6.783485060563133, 6.815638466761663, 6.847867895725406, 6.880173347454363, 6.912554821948534, 6.945012319207919, 6.977545839232518, 7.01015538202233, 7.042840947577356, 7.075602535897598, 7.108440146983052, 7.14135378083372, 7.174343437449603, 7.207409116830698, 7.240550818977008, 7.273768543888533, 7.307062291565271, 7.340432062007222, 7.373877855214388, 7.407399671186768, 7.440997509924362, 7.474671371427169, 7.5084212556951915, 7.542247162728424, 7.576149092526875, 7.610127045090539, 7.644181020419414, 7.678311018513505, 7.712517039372812, 7.746799082997329, 7.781157149387062, 7.8155912385420105, 7.850101350462168, 7.884687485147544, 7.919349642598133, 7.954087822813933, 7.988902025794951, 8.023792251541181, 8.058758500052624, 8.093800771329283, 8.128919065371155, 8.16411338217824, 8.19938372175054, 8.234730084088055, 8.27015246919078, 8.305650877058723, 8.341225307691879, 8.376875761090245, 8.412602237253832, 8.448404736182628, 8.484283257876637, 8.520237802335865, 8.556268369560303, 8.592374959549952, 8.628557572304823, 8.664816207824902, 8.701150866110194, 8.737561547160707, 8.774048250976428, 8.810610977557362, 8.847249726903515, 8.883964499014878, 8.920755293891453, 8.957622111533249, 8.994564951940252, 9.031583815112475, 9.068678701049908, 9.105849609752553, 9.143096541220418, 9.180419495453494, 9.21781847245178, 9.255293472215284, 9.292844494744003, 9.33047154003793, 9.368174608097076, 9.405953698921438, 9.443808812511007, 9.481739948865794, 9.519747107985797, 9.55783028987101, 9.595989494521438, 9.634224721937082, 9.672535972117936, 9.710923245064008, 9.749386540775292, 9.787925859251787, 9.826541200493502, 9.865232564500428, 9.903999951272564, 9.94284336080992, 9.98176279311249, 10.020758248180266, 10.059829726013263, 10.098977226611476, 10.138200749974894, 10.177500296103533, 10.216875864997386, 10.256327456656448, 10.295855071080728, 10.33545870827022, 10.375138368224931, 10.414894050944849, 10.454725756429983, 10.494633484680334, 10.534617235695894, 10.57467700947667, 10.61481280602266, 10.655024625333864, 10.695312467410282, 10.735676332251915, 10.77611621985876, 10.81663213023082, 10.857224063368095, 10.89789201927058, 10.938635997938283, 10.979455999371199, 11.020352023569325, 11.06132407053267, 11.10237214026123, 11.143496232754996, 11.184696348013984, 11.225972486038184, 11.267324646827593, 11.30875283038222, 11.350257036702065, 11.391837265787116, 11.433493517637384, 11.47522579225287, 11.517034089633562, 11.558918409779473, 11.600878752690598, 11.64291511836694, 11.685027506808488]} diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_small_sigma.json b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_small_sigma.json new file mode 100644 index 000000000000..194639e054a7 --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_small_sigma.json @@ -0,0 +1 @@ +{"mu": [-100.0, -99.59919839679358, -99.19839679358718, -98.79759519038076, -98.39679358717434, -97.99599198396794, -97.59519038076152, -97.1943887775551, -96.7935871743487, -96.39278557114228, -95.99198396793587, -95.59118236472946, -95.19038076152304, -94.78957915831663, -94.38877755511022, -93.9879759519038, -93.58717434869739, -93.18637274549098, -92.78557114228457, -92.38476953907815, -91.98396793587175, -91.58316633266533, -91.18236472945893, -90.78156312625251, -90.38076152304609, -89.97995991983967, -89.57915831663327, -89.17835671342685, -88.77755511022045, -88.37675350701403, -87.97595190380761, -87.5751503006012, -87.17434869739479, -86.77354709418837, -86.37274549098197, -85.97194388777555, -85.57114228456913, -85.17034068136273, -84.76953907815631, -84.3687374749499, -83.96793587174349, -83.56713426853707, -83.16633266533066, -82.76553106212424, -82.36472945891784, -81.96392785571142, -81.56312625250501, -81.1623246492986, -80.76152304609218, -80.36072144288578, -79.95991983967936, -79.55911823647294, -79.15831663326654, -78.75751503006012, -78.3567134268537, -77.9559118236473, -77.55511022044088, -77.15430861723446, -76.75350701402806, -76.35270541082164, -75.95190380761522, -75.55110220440882, -75.1503006012024, -74.749498997996, -74.34869739478958, -73.94789579158316, -73.54709418837675, -73.14629258517034, -72.74549098196393, -72.34468937875752, -71.9438877755511, -71.54308617234469, -71.14228456913827, -70.74148296593187, -70.34068136272545, -69.93987975951904, -69.53907815631263, -69.13827655310621, -68.73747494989979, -68.33667334669339, -67.93587174348697, -67.53507014028057, -67.13426853707415, -66.73346693386773, -66.33266533066131, -65.93186372745491, -65.53106212424849, -65.13026052104209, -64.72945891783567, -64.32865731462925, -63.92785571142284, -63.52705410821643, -63.12625250501002, -62.725450901803605, -62.324649298597194, -61.92384769539078, -61.523046092184366, -61.122244488977955, -60.721442885771545, -60.32064128256513, -59.91983967935872, -59.519038076152306, -59.11823647294589, -58.71743486973948, -58.31663326653307, -57.91583166332665, -57.51503006012024, -57.11422845691383, -56.71342685370741, -56.312625250501, -55.91182364729459, -55.51102204408817, -55.11022044088176, -54.70941883767535, -54.30861723446893, -53.90781563126252, -53.50701402805611, -53.1062124248497, -52.705410821643284, -52.30460921843687, -51.90380761523046, -51.503006012024045, -51.102204408817634, -50.701402805611224, -50.300601202404806, -49.899799599198396, -49.498997995991985, -49.09819639278557, -48.69739478957916, -48.296593186372746, -47.89579158316633, -47.49498997995992, -47.09418837675351, -46.69338677354709, -46.29258517034068, -45.89178356713427, -45.49098196392785, -45.09018036072144, -44.68937875751503, -44.28857715430861, -43.8877755511022, -43.48697394789579, -43.08617234468938, -42.68537074148296, -42.28456913827655, -41.88376753507014, -41.482965931863724, -41.08216432865731, -40.6813627254509, -40.280561122244485, -39.879759519038075, -39.478957915831664, -39.07815631262525, -38.677354709418836, -38.276553106212425, -37.87575150300601, -37.4749498997996, -37.07414829659319, -36.67334669338677, -36.27254509018036, -35.87174348697394, -35.47094188376754, -35.07014028056112, -34.6693386773547, -34.2685370741483, -33.86773547094188, -33.46693386773546, -33.06613226452906, -32.66533066132264, -32.264529058116224, -31.86372745490982, -31.462925851703403, -31.062124248496986, -30.661322645290582, -30.260521042084164, -29.859719438877747, -29.458917835671343, -29.058116232464926, -28.657314629258508, -28.256513026052104, -27.855711422845687, -27.454909819639283, -27.054108216432866, -26.653306613226448, -26.252505010020045, -25.851703406813627, -25.45090180360721, -25.050100200400806, -24.649298597194388, -24.24849699398797, -23.847695390781567, -23.44689378757515, -23.04609218436873, -22.645290581162328, -22.24448897795591, -21.843687374749493, -21.44288577154309, -21.04208416833667, -20.641282565130254, -20.24048096192385, -19.839679358717433, -19.438877755511015, -19.038076152304612, -18.637274549098194, -18.236472945891776, -17.835671342685373, -17.434869739478955, -17.034068136272538, -16.633266533066134, -16.232464929859717, -15.831663326653299, -15.430861723446895, -15.030060120240478, -14.62925851703406, -14.228456913827657, -13.827655310621239, -13.426853707414821, -13.026052104208418, -12.625250501002, -12.224448897795583, -11.823647294589179, -11.422845691382761, -11.022044088176344, -10.62124248496994, -10.220440881763523, -9.819639278557105, -9.418837675350701, -9.018036072144284, -8.617234468937866, -8.216432865731463, -7.815631262525045, -7.414829659318642, -7.014028056112224, -6.613226452905806, -6.212424849699403, -5.811623246492985, -5.4108216432865675, -5.010020040080164, -4.609218436873746, -4.208416833667329, -3.807615230460925, -3.4068136272545075, -3.00601202404809, -2.6052104208416864, -2.2044088176352687, -1.803607214428851, -1.4028056112224476, -1.00200400801603, -0.6012024048096123, -0.20040080160320883, 0.20040080160320883, 0.6012024048096265, 1.00200400801603, 1.4028056112224476, 1.8036072144288653, 2.2044088176352687, 2.6052104208416864, 3.006012024048104, 3.4068136272545075, 3.807615230460925, 4.208416833667343, 4.609218436873746, 5.010020040080164, 5.410821643286582, 5.811623246492985, 6.212424849699403, 6.6132264529058205, 7.014028056112224, 7.414829659318642, 7.815631262525059, 8.216432865731463, 8.61723446893788, 9.018036072144298, 9.418837675350701, 9.81963927855712, 10.220440881763537, 10.62124248496994, 11.022044088176358, 11.422845691382776, 11.823647294589179, 12.224448897795597, 12.625250501002014, 13.026052104208418, 13.426853707414836, 13.827655310621239, 14.228456913827657, 14.629258517034074, 15.030060120240478, 15.430861723446895, 15.831663326653313, 16.232464929859717, 16.633266533066134, 17.034068136272552, 17.434869739478955, 17.835671342685373, 18.23647294589179, 18.637274549098194, 19.038076152304612, 19.43887775551103, 19.839679358717433, 20.24048096192385, 20.64128256513027, 21.04208416833667, 21.44288577154309, 21.843687374749507, 22.24448897795591, 22.645290581162328, 23.046092184368746, 23.44689378757515, 23.847695390781567, 24.248496993987985, 24.649298597194388, 25.050100200400806, 25.450901803607223, 25.851703406813627, 26.252505010020045, 26.653306613226462, 27.054108216432866, 27.454909819639283, 27.8557114228457, 28.25651302605212, 28.657314629258508, 29.058116232464926, 29.458917835671343, 29.85971943887776, 30.26052104208418, 30.661322645290596, 31.062124248496986, 31.462925851703403, 31.86372745490982, 32.26452905811624, 32.665330661322656, 33.066132264529074, 33.46693386773546, 33.86773547094188, 34.2685370741483, 34.669338677354716, 35.070140280561134, 35.47094188376755, 35.87174348697394, 36.27254509018036, 36.673346693386776, 37.074148296593194, 37.47494989979961, 37.87575150300603, 38.27655310621242, 38.677354709418836, 39.078156312625254, 39.47895791583167, 39.87975951903809, 40.28056112224451, 40.681362725450896, 41.08216432865731, 41.48296593186373, 41.88376753507015, 42.28456913827657, 42.685370741482984, 43.08617234468937, 43.48697394789579, 43.88777555110221, 44.288577154308626, 44.689378757515044, 45.09018036072143, 45.49098196392785, 45.89178356713427, 46.292585170340686, 46.693386773547104, 47.09418837675352, 47.49498997995991, 47.89579158316633, 48.296593186372746, 48.697394789579164, 49.09819639278558, 49.498997995992, 49.89979959919839, 50.300601202404806, 50.701402805611224, 51.10220440881764, 51.50300601202406, 51.90380761523048, 52.304609218436866, 52.705410821643284, 53.1062124248497, 53.50701402805612, 53.90781563126254, 54.308617234468954, 54.709418837675344, 55.11022044088176, 55.51102204408818, 55.9118236472946, 56.312625250501014, 56.71342685370743, 57.11422845691382, 57.51503006012024, 57.91583166332666, 58.316633266533074, 58.71743486973949, 59.11823647294591, 59.5190380761523, 59.91983967935872, 60.320641282565134, 60.72144288577155, 61.12224448897797, 61.52304609218439, 61.923847695390776, 62.324649298597194, 62.72545090180361, 63.12625250501003, 63.52705410821645, 63.927855711422865, 64.32865731462925, 64.72945891783567, 65.13026052104209, 65.5310621242485, 65.93186372745492, 66.33266533066131, 66.73346693386773, 67.13426853707415, 67.53507014028057, 67.93587174348698, 68.3366733466934, 68.73747494989979, 69.13827655310621, 69.53907815631263, 69.93987975951904, 70.34068136272546, 70.74148296593188, 71.14228456913827, 71.54308617234469, 71.9438877755511, 72.34468937875752, 72.74549098196394, 73.14629258517036, 73.54709418837675, 73.94789579158316, 74.34869739478958, 74.749498997996, 75.15030060120242, 75.55110220440883, 75.95190380761522, 76.35270541082164, 76.75350701402806, 77.15430861723448, 77.5551102204409, 77.95591182364731, 78.3567134268537, 78.75751503006012, 79.15831663326654, 79.55911823647295, 79.95991983967937, 80.36072144288579, 80.76152304609218, 81.1623246492986, 81.56312625250501, 81.96392785571143, 82.36472945891785, 82.76553106212427, 83.16633266533066, 83.56713426853707, 83.96793587174349, 84.36873747494991, 84.76953907815633, 85.17034068136272, 85.57114228456913, 85.97194388777555, 86.37274549098197, 86.77354709418839, 87.1743486973948, 87.5751503006012, 87.97595190380761, 88.37675350701403, 88.77755511022045, 89.17835671342687, 89.57915831663328, 89.97995991983967, 90.38076152304609, 90.78156312625251, 91.18236472945893, 91.58316633266534, 91.98396793587176, 92.38476953907815, 92.78557114228457, 93.18637274549098, 93.5871743486974, 93.98797595190382, 94.38877755511024, 94.78957915831663, 95.19038076152304, 95.59118236472946, 95.99198396793588, 96.3927855711423, 96.79358717434872, 97.1943887775551, 97.59519038076152, 97.99599198396794, 98.39679358717436, 98.79759519038078, 99.1983967935872, 99.59919839679358, 100.0], "sigma": [0.1, 0.10180360721442887, 0.10360721442885772, 0.10541082164328658, 0.10721442885771544, 0.10901803607214429, 0.11082164328657315, 0.11262525050100201, 0.11442885771543086, 0.11623246492985972, 0.11803607214428859, 0.11983967935871745, 0.1216432865731463, 0.12344689378757516, 0.12525050100200402, 0.12705410821643287, 0.12885771543086172, 0.1306613226452906, 0.13246492985971944, 0.13426853707414832, 0.13607214428857717, 0.13787575150300602, 0.13967935871743486, 0.14148296593186374, 0.1432865731462926, 0.14509018036072147, 0.14689378757515031, 0.14869739478957916, 0.150501002004008, 0.1523046092184369, 0.15410821643286574, 0.1559118236472946, 0.15771543086172346, 0.1595190380761523, 0.16132264529058116, 0.16312625250501003, 0.16492985971943888, 0.16673346693386776, 0.1685370741482966, 0.17034068136272545, 0.1721442885771543, 0.17394789579158318, 0.17575150300601203, 0.1775551102204409, 0.17935871743486975, 0.1811623246492986, 0.18296593186372745, 0.18476953907815633, 0.18657314629258517, 0.18837675350701405, 0.1901803607214429, 0.19198396793587175, 0.1937875751503006, 0.19559118236472947, 0.19739478957915832, 0.1991983967935872, 0.20100200400801604, 0.2028056112224449, 0.20460921843687374, 0.20641282565130262, 0.20821643286573147, 0.21002004008016034, 0.2118236472945892, 0.21362725450901804, 0.2154308617234469, 0.21723446893787576, 0.2190380761523046, 0.2208416833667335, 0.22264529058116234, 0.22444889779559118, 0.22625250501002006, 0.2280561122244489, 0.22985971943887776, 0.23166332665330663, 0.23346693386773548, 0.23527054108216433, 0.2370741482965932, 0.23887775551102206, 0.2406813627254509, 0.24248496993987978, 0.24428857715430863, 0.24609218436873748, 0.24789579158316635, 0.2496993987975952, 0.251503006012024, 0.2533066132264529, 0.2551102204408818, 0.2569138276553106, 0.2587174348697395, 0.2605210420841684, 0.2623246492985972, 0.26412825651302607, 0.2659318637274549, 0.26773547094188377, 0.2695390781563126, 0.27134268537074147, 0.2731462925851703, 0.2749498997995992, 0.27675350701402807, 0.2785571142284569, 0.2803607214428858, 0.28216432865731467, 0.2839679358717435, 0.28577154308617236, 0.2875751503006012, 0.28937875751503006, 0.2911823647294589, 0.29298597194388776, 0.2947895791583166, 0.2965931863727455, 0.29839679358717436, 0.3002004008016032, 0.3020040080160321, 0.30380761523046096, 0.3056112224448898, 0.30741482965931866, 0.3092184368737475, 0.31102204408817635, 0.3128256513026052, 0.31462925851703405, 0.3164328657314629, 0.3182364729458918, 0.32004008016032065, 0.3218436873747495, 0.3236472945891784, 0.32545090180360725, 0.3272545090180361, 0.32905811623246495, 0.3308617234468938, 0.33266533066132264, 0.3344689378757515, 0.33627254509018034, 0.3380761523046092, 0.3398797595190381, 0.34168336673346694, 0.3434869739478958, 0.3452905811623247, 0.34709418837675354, 0.3488977955911824, 0.35070140280561124, 0.3525050100200401, 0.35430861723446894, 0.3561122244488978, 0.35791583166332663, 0.3597194388777555, 0.36152304609218433, 0.3633266533066133, 0.36513026052104214, 0.366933867735471, 0.36873747494989983, 0.3705410821643287, 0.37234468937875753, 0.3741482965931864, 0.37595190380761523, 0.3777555110220441, 0.3795591182364729, 0.3813627254509018, 0.3831663326653306, 0.3849699398797596, 0.38677354709418843, 0.3885771543086173, 0.3903807615230461, 0.392184368737475, 0.3939879759519038, 0.39579158316633267, 0.3975951903807615, 0.39939879759519037, 0.4012024048096192, 0.40300601202404807, 0.4048096192384769, 0.4066132264529059, 0.4084168336673347, 0.41022044088176357, 0.4120240480961924, 0.41382765531062127, 0.4156312625250501, 0.41743486973947896, 0.4192384769539078, 0.42104208416833666, 0.4228456913827655, 0.42464929859719436, 0.4264529058116232, 0.42825651302605217, 0.430060120240481, 0.43186372745490986, 0.4336673346693387, 0.43547094188376756, 0.4372745490981964, 0.43907815631262526, 0.4408817635270541, 0.44268537074148295, 0.4444889779559118, 0.44629258517034065, 0.4480961923847695, 0.44989979959919846, 0.4517034068136273, 0.45350701402805615, 0.455310621242485, 0.45711422845691385, 0.4589178356713427, 0.46072144288577155, 0.4625250501002004, 0.46432865731462925, 0.4661322645290581, 0.46793587174348694, 0.4697394789579158, 0.47154308617234475, 0.4733466933867736, 0.47515030060120245, 0.4769539078156313, 0.47875751503006014, 0.480561122244489, 0.48236472945891784, 0.4841683366733467, 0.48597194388777554, 0.4877755511022044, 0.48957915831663323, 0.4913827655310621, 0.49318637274549104, 0.4949899799599199, 0.49679358717434874, 0.4985971943887776, 0.5004008016032064, 0.5022044088176353, 0.5040080160320641, 0.505811623246493, 0.5076152304609218, 0.5094188376753507, 0.5112224448897795, 0.5130260521042084, 0.5148296593186373, 0.5166332665330662, 0.518436873747495, 0.5202404809619239, 0.5220440881763527, 0.5238476953907816, 0.5256513026052104, 0.5274549098196393, 0.5292585170340681, 0.531062124248497, 0.5328657314629258, 0.5346693386773547, 0.5364729458917836, 0.5382765531062125, 0.5400801603206413, 0.5418837675350702, 0.543687374749499, 0.5454909819639279, 0.5472945891783567, 0.5490981963927856, 0.5509018036072144, 0.5527054108216433, 0.5545090180360721, 0.556312625250501, 0.5581162324649299, 0.5599198396793588, 0.5617234468937876, 0.5635270541082165, 0.5653306613226453, 0.5671342685370742, 0.568937875751503, 0.5707414829659319, 0.5725450901803607, 0.5743486973947896, 0.5761523046092184, 0.5779559118236474, 0.5797595190380762, 0.5815631262525051, 0.5833667334669339, 0.5851703406813628, 0.5869739478957916, 0.5887775551102205, 0.5905811623246493, 0.5923847695390781, 0.594188376753507, 0.5959919839679358, 0.5977955911823647, 0.5995991983967937, 0.6014028056112224, 0.6032064128256512, 0.6050100200400802, 0.606813627254509, 0.6086172344689379, 0.6104208416833667, 0.6122244488977956, 0.6140280561122244, 0.6158316633266533, 0.6176352705410821, 0.619438877755511, 0.6212424849699398, 0.6230460921843687, 0.6248496993987975, 0.6266533066132265, 0.6284569138276553, 0.6302605210420842, 0.632064128256513, 0.6338677354709419, 0.6356713426853707, 0.6374749498997996, 0.6392785571142284, 0.6410821643286573, 0.6428857715430861, 0.644689378757515, 0.6464929859719438, 0.6482965931863728, 0.6501002004008016, 0.6519038076152305, 0.6537074148296593, 0.6555110220440882, 0.657314629258517, 0.6591182364729459, 0.6609218436873747, 0.6627254509018036, 0.6645290581162324, 0.6663326653306613, 0.6681362725450901, 0.6699398797595191, 0.6717434869739479, 0.6735470941883768, 0.6753507014028056, 0.6771543086172345, 0.6789579158316633, 0.6807615230460922, 0.682565130260521, 0.6843687374749499, 0.6861723446893787, 0.6879759519038076, 0.6897795591182364, 0.6915831663326654, 0.6933867735470942, 0.6951903807615231, 0.6969939879759519, 0.6987975951903808, 0.7006012024048096, 0.7024048096192385, 0.7042084168336673, 0.7060120240480962, 0.707815631262525, 0.7096192384769539, 0.7114228456913827, 0.7132264529058117, 0.7150300601202405, 0.7168336673346694, 0.7186372745490982, 0.720440881763527, 0.7222444889779559, 0.7240480961923847, 0.7258517034068136, 0.7276553106212424, 0.7294589178356713, 0.7312625250501001, 0.733066132264529, 0.734869739478958, 0.7366733466933868, 0.7384769539078156, 0.7402805611222445, 0.7420841683366733, 0.7438877755511022, 0.745691382765531, 0.7474949899799599, 0.7492985971943887, 0.7511022044088176, 0.7529058116232464, 0.7547094188376753, 0.7565130260521042, 0.7583166332665331, 0.7601202404809619, 0.7619238476953908, 0.7637274549098196, 0.7655310621242485, 0.7673346693386773, 0.7691382765531062, 0.770941883767535, 0.7727454909819639, 0.7745490981963927, 0.7763527054108216, 0.7781563126252505, 0.7799599198396794, 0.7817635270541082, 0.7835671342685371, 0.7853707414829659, 0.7871743486973948, 0.7889779559118236, 0.7907815631262525, 0.7925851703406813, 0.7943887775551102, 0.796192384769539, 0.797995991983968, 0.7997995991983968, 0.8016032064128257, 0.8034068136272545, 0.8052104208416834, 0.8070140280561122, 0.8088176352705411, 0.8106212424849699, 0.8124248496993988, 0.8142284569138276, 0.8160320641282565, 0.8178356713426853, 0.8196392785571143, 0.8214428857715431, 0.823246492985972, 0.8250501002004008, 0.8268537074148297, 0.8286573146292585, 0.8304609218436874, 0.8322645290581162, 0.8340681362725451, 0.8358717434869739, 0.8376753507014028, 0.8394789579158316, 0.8412825651302606, 0.8430861723446894, 0.8448897795591183, 0.8466933867735471, 0.848496993987976, 0.8503006012024048, 0.8521042084168337, 0.8539078156312625, 0.8557114228456913, 0.8575150300601202, 0.859318637274549, 0.8611222444889779, 0.8629258517034069, 0.8647294589178357, 0.8665330661322646, 0.8683366733466934, 0.8701402805611222, 0.8719438877755511, 0.87374749498998, 0.8755511022044088, 0.8773547094188376, 0.8791583166332665, 0.8809619238476953, 0.8827655310621242, 0.8845691382765531, 0.886372745490982, 0.8881763527054108, 0.8899799599198397, 0.8917835671342685, 0.8935871743486974, 0.8953907815631262, 0.8971943887775551, 0.8989979959919839, 0.9008016032064128, 0.9026052104208416, 0.9044088176352705, 0.9062124248496994, 0.9080160320641283, 0.9098196392785571, 0.911623246492986, 0.9134268537074148, 0.9152304609218437, 0.9170340681362725, 0.9188376753507014, 0.9206412825651302, 0.9224448897795591, 0.9242484969939879, 0.9260521042084168, 0.9278557114228457, 0.9296593186372746, 0.9314629258517034, 0.9332665330661323, 0.9350701402805611, 0.93687374749499, 0.9386773547094188, 0.9404809619238477, 0.9422845691382765, 0.9440881763527054, 0.9458917835671342, 0.9476953907815631, 0.949498997995992, 0.9513026052104209, 0.9531062124248497, 0.9549098196392786, 0.9567134268537074, 0.9585170340681363, 0.9603206412825651, 0.962124248496994, 0.9639278557114228, 0.9657314629258517, 0.9675350701402805, 0.9693386773547094, 0.9711422845691383, 0.9729458917835672, 0.974749498997996, 0.9765531062124249, 0.9783567134268537, 0.9801603206412826, 0.9819639278557114, 0.9837675350701403, 0.9855711422845691, 0.987374749498998, 0.9891783567134268, 0.9909819639278556, 0.9927855711422846, 0.9945891783567135, 0.9963927855711423, 0.9981963927855712, 1.0], "expected": [0.001168502750680849, 0.0012110332643310775, 0.001254324005633445, 0.0012983749745879517, 0.0013431861711945977, 0.0013887575954533824, 0.0014350892473643066, 0.00148218112692737, 0.0015300332341425722, 0.0015786455690099139, 0.0016280181315293948, 0.0016781509217010146, 0.0017290439395247733, 0.0017806971850006716, 0.0018331106581287089, 0.0018862843589088848, 0.0019402182873412002, 0.0019949124434256553, 0.002050366827162249, 0.002106581438550982, 0.002163556277591854, 0.002221291344284865, 0.0022797866386300154, 0.0023390421606273052, 0.0023990579102767338, 0.002459833887578302, 0.0025213700925320087, 0.0025836665251378543, 0.0026467231853958394, 0.002710540073305964, 0.0027751171888682267, 0.0028404545320826306, 0.0029065521029491715, 0.0029734099014678524, 0.003041027927638672, 0.003109406181461632, 0.0031785446629367295, 0.0032484433720639675, 0.003319102308843344, 0.003390521473274859, 0.003462700865358514, 0.0035356404850943085, 0.0036093403324822413, 0.003683800407522314, 0.0037590207102145253, 0.003835001240558875, 0.003911741998555365, 0.003989242984203994, 0.004067504197504761, 0.004146525638457669, 0.004226307307062715, 0.004306849203319901, 0.0043881513272292245, 0.004470213678790689, 0.004553036258004291, 0.0046366190648700345, 0.004720962099387914, 0.004806065361557934, 0.004891928851380093, 0.004978552568854392, 0.00506593651398083, 0.005154080686759407, 0.005242985087190123, 0.005332649715272977, 0.005423074571007971, 0.005514259654395105, 0.005606204965434377, 0.0056989105041257895, 0.00579237627046934, 0.005886602264465029, 0.005981588486112859, 0.006077334935412826, 0.006173841612364933, 0.006271108516969181, 0.006369135649225565, 0.006467923009134091, 0.006567470596694755, 0.006667778411907557, 0.0067688464547724985, 0.00687067472528958, 0.006973263223458801, 0.00707661194928016, 0.00718072090275366, 0.0072855900838792965, 0.0073912194926570715, 0.00749760912908699, 0.007604758993169044, 0.007712669084903238, 0.007821339404289574, 0.007930769951328047, 0.008040960726018658, 0.008151911728361409, 0.008263622958356297, 0.008376094416003326, 0.008489326101302494, 0.008603318014253802, 0.008718070154857246, 0.008833582523112836, 0.00894985511902056, 0.009066887942580424, 0.00918468099379243, 0.009303234272656571, 0.009422547779172851, 0.00954262151334127, 0.00966345547516183, 0.009785049664634528, 0.009907404081759367, 0.010030518726536342, 0.010154393598965458, 0.010279028699046717, 0.010404424026780112, 0.010530579582165642, 0.010657495365203318, 0.01078517137589313, 0.01091360761423508, 0.01104280408022917, 0.0111727607738754, 0.011303477695173767, 0.011434954844124273, 0.01156719222072692, 0.011700189824981706, 0.011833947656888635, 0.011968465716447696, 0.0121037440036589, 0.012239782518522245, 0.012376581261037726, 0.012514140231205347, 0.012652459429025105, 0.012791538854497004, 0.01293137850762104, 0.013071978388397217, 0.013213338496825534, 0.01335545883290599, 0.013498339396638586, 0.013641980188023319, 0.013786381207060192, 0.013931542453749206, 0.014077463928090358, 0.014224145630083647, 0.014371587559729077, 0.014519789717026643, 0.014668752101976351, 0.014818474714578197, 0.014968957554832182, 0.015120200622738306, 0.01527220391829657, 0.015424967441506983, 0.015578491192369523, 0.015732775170884204, 0.015887819377051027, 0.016043623810869982, 0.01620018847234108, 0.01635751336146432, 0.016515598478239697, 0.016674443822667213, 0.016834049394746867, 0.01699441519447866, 0.017155541221862594, 0.017317427476898677, 0.017480073959586888, 0.017643480669927238, 0.017807647607919728, 0.017972574773564357, 0.018138262166861124, 0.01830470978781003, 0.018471917636411078, 0.018639885712664263, 0.018808614016569587, 0.018978102548127054, 0.019148351307336654, 0.019319360294198406, 0.01949112950871229, 0.019663658950878307, 0.019836948620696467, 0.020010998518166765, 0.020185808643289206, 0.02036137899606378, 0.020537709576490495, 0.02071480038456935, 0.020892651420300345, 0.021071262683683478, 0.02125063417471875, 0.021430765893406173, 0.021611657839745724, 0.021793310013737414, 0.021975722415381243, 0.02215889504467721, 0.022342827901625315, 0.022527520986225565, 0.02271297429847795, 0.022899187838382472, 0.023086161605939137, 0.02327389560114794, 0.023462389824008882, 0.023651644274521974, 0.023841658952687195, 0.024032433858504555, 0.02422396899197405, 0.02441626435309569, 0.02460931994186947, 0.024803135758295385, 0.024997711802373437, 0.025193048074103632, 0.025389144573485966, 0.02558600130052044, 0.025783618255207048, 0.025981995437545813, 0.026181132847536703, 0.02638103048517973, 0.026581688350474898, 0.026783106443422206, 0.026985284764021653, 0.02718822331227324, 0.027391922088176965, 0.02759638109173283, 0.027801600322940833, 0.028007579781800972, 0.028214319468313254, 0.02842181938247769, 0.028630079524294246, 0.028839099893762946, 0.029048880490883784, 0.029259421315656762, 0.029470722368081875, 0.02968278364815913, 0.029895605155888526, 0.03010918689127006, 0.03032352885430373, 0.030538631044989543, 0.030754493463327495, 0.030971116109317597, 0.031188498982959827, 0.03140664208425419, 0.0316255454132007, 0.031845208969799345, 0.03206563275405013, 0.03228681676595306, 0.03250876100550812, 0.032731465472715326, 0.03295493016757467, 0.03317915509008615, 0.03340414024024976, 0.03362988561806555, 0.033856391223533434, 0.03408365705665348, 0.034311683117425655, 0.03454046940584997, 0.034770015921926425, 0.035000322665655025, 0.03523138963703576, 0.03546321683606862, 0.035695804262753636, 0.035929151917090785, 0.036163259799080076, 0.036398127908721524, 0.036633756246015094, 0.0368701448109608, 0.03710729360355864, 0.03734520262380863, 0.03758387187171076, 0.03782330134726502, 0.038063491050471424, 0.038304440981329964, 0.03854615113984065, 0.03878862152600347, 0.03903185213981844, 0.03927584298128554, 0.03952059405040478, 0.03976610534717616, 0.04001237687159967, 0.04025940862367533, 0.040507200603403126, 0.04075575281078305, 0.041005065245815125, 0.041255137908499336, 0.04150597079883569, 0.041757563916824184, 0.04200991726246483, 0.04226303083575758, 0.042516904636702484, 0.04277153866529954, 0.04302693292154873, 0.04328308740545006, 0.043540002117003526, 0.04379767705620913, 0.04405611222306687, 0.044315307617576745, 0.04457526323973877, 0.044835979089552926, 0.045097455167019226, 0.04535969147213767, 0.04562268800490824, 0.04588644476533098, 0.04615096175340583, 0.04641623896913282, 0.04668227641251196, 0.04694907408354323, 0.04721663198222664, 0.0474849501085622, 0.04775402846254989, 0.04802386704418972, 0.048294465853481676, 0.04856582489042579, 0.04883794415502204, 0.049110823647270443, 0.049384463367170964, 0.049658863314723634, 0.04993402348992844, 0.05020994389278537, 0.05048662452329445, 0.05076406538145568, 0.05104226646726904, 0.05132122778073454, 0.05160094932185218, 0.05188143109062195, 0.052162673087043865, 0.05244467531111794, 0.05272743776284413, 0.05301096044222247, 0.053295243349252945, 0.053580286483935556, 0.05386608984627031, 0.05415265343625719, 0.05443997725389622, 0.05472806129918739, 0.0550169055721307, 0.05530651007272615, 0.055596874800973736, 0.05588799975687348, 0.056179884940425334, 0.05647253035162934, 0.05676593599048548, 0.05706010185699376, 0.057355027951154186, 0.05765071427296675, 0.05794716082243145, 0.05824436759954829, 0.05854233460431726, 0.05884106183673837, 0.05914054929681163, 0.059440796984537046, 0.05974180489991458, 0.060043573042944255, 0.06034610141362607, 0.060649390011960014, 0.06095343883794611, 0.061258247891584336, 0.06156381717287471, 0.061870146681817215, 0.062177236418411864, 0.06248508638265865, 0.06279369657455758, 0.06310306699410866, 0.06341319764131186, 0.0637240885161672, 0.06403573961867469, 0.06434815094883431, 0.06466132250664607, 0.06497525429210997, 0.065289946305226, 0.06560539854599418, 0.06592161101441449, 0.06623858371048695, 0.06655631663421155, 0.0668748097855883, 0.06719406316461718, 0.06751407677129818, 0.06783485060563132, 0.06815638466761663, 0.06847867895725405, 0.06880173347454363, 0.06912554821948533, 0.06945012319207919, 0.06977545839232516, 0.07010155382022329, 0.07042840947577356, 0.07075602535897597, 0.07108440146983053, 0.0714135378083372, 0.07174343437449603, 0.07207409116830697, 0.07240550818977008, 0.07273768543888531, 0.0730706229156527, 0.07340432062007221, 0.07373877855214388, 0.07407399671186767, 0.07440997509924362, 0.07474671371427169, 0.0750842125569519, 0.07542247162728426, 0.07576149092526875, 0.07610127045090538, 0.07644181020419415, 0.07678311018513506, 0.0771251703937281, 0.07746799082997329, 0.07781157149387061, 0.07815591238542008, 0.0785010135046217, 0.07884687485147544, 0.07919349642598134, 0.07954087822813934, 0.0798890202579495, 0.0802379225154118, 0.08058758500052625, 0.08093800771329282, 0.08128919065371154, 0.0816411338217824, 0.08199383721750539, 0.08234730084088052, 0.08270152469190782, 0.08305650877058723, 0.08341225307691878, 0.08376875761090248, 0.0841260223725383, 0.08448404736182627, 0.08484283257876638, 0.08520237802335862, 0.085562683695603, 0.08592374959549953, 0.08628557572304821, 0.086648162078249, 0.08701150866110197, 0.08737561547160705, 0.08774048250976427, 0.08810610977557363, 0.08847249726903514, 0.08883964499014878, 0.08920755293891455, 0.08957622111533248, 0.08994564951940251, 0.09031583815112472, 0.09068678701049905, 0.09105849609752552, 0.09143096541220416, 0.09180419495453492, 0.0921781847245178, 0.09255293472215283, 0.09292844494744, 0.09330471540037931, 0.09368174608097075, 0.09405953698921435, 0.09443808812511006, 0.09481739948865793, 0.09519747107985793, 0.09557830289871007, 0.09595989494521438, 0.0963422472193708, 0.09672535972117936, 0.09710923245064007, 0.09749386540775291, 0.09787925859251789, 0.098265412004935, 0.09865232564500426, 0.09903999951272564, 0.09942843360809918, 0.09981762793112486, 0.10020758248180267, 0.10059829726013265, 0.10098977226611473, 0.10138200749974896, 0.10177500296103534, 0.10216875864997384, 0.10256327456656449, 0.10295855071080728, 0.1033545870827022, 0.10375138368224926, 0.10414894050944846, 0.1045472575642998, 0.1049463348468033, 0.10534617235695894, 0.1057467700947667, 0.10614812806022661, 0.10655024625333863, 0.10695312467410281, 0.10735676332251913, 0.10776116219858758, 0.10816632130230819, 0.10857224063368093, 0.1089789201927058, 0.10938635997938281, 0.10979455999371195, 0.11020352023569327, 0.1106132407053267, 0.11102372140261227, 0.11143496232754999, 0.11184696348013984, 0.11225972486038183, 0.11267324646827594, 0.1130875283038222, 0.1135025703670206, 0.11391837265787115, 0.11433493517637383, 0.11475225792252866, 0.11517034089633565, 0.11558918409779474, 0.11600878752690598, 0.11642915118366935, 0.11685027506808487]} diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/runner.py b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/runner.py new file mode 100644 index 000000000000..ba92ff1d1ca5 --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/runner.py @@ -0,0 +1,85 @@ +#!/usr/bin/env python +# +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Generate fixtures.""" + +import os +import json +import numpy as np +from scipy.stats import anglit + +# Get the file path: +FILE = os.path.realpath(__file__) + +# Extract the directory in which this file resides: +DIR = os.path.dirname(FILE) + + +def gen(loc, sigma, name): + """Generate fixture data and write to file. + + # Arguments + + * `loc`: location parameter values + * `sigma`: scale parameter values + * `name::str`: output filename + """ + y = anglit.var(loc=loc, scale=sigma) + + # Store data to be written to file as a dictionary: + data = { + "mu": loc.tolist(), + "sigma": sigma.tolist(), + "expected": y.tolist() + } + + # Based on the script directory, create an output filepath: + filepath = os.path.join(DIR, name) + + # Write the data to the output filepath as JSON: + with open(filepath, "w", encoding="utf-8") as outfile: + json.dump(data, outfile) + + +def main(): + """Generate fixture data.""" + n = 500 + + # Small location parameter and small scale parameter: + loc = np.linspace(-1.0, 1.0, n) + sigma = np.linspace(0.1, 1.0, n) + gen(loc, sigma, "small_mu_small_sigma.json") + + # Small location parameter and large scale parameter: + loc = np.linspace(-1.0, 1.0, n) + sigma = np.linspace(1.0, 10.0, n) + gen(loc, sigma, "small_mu_large_sigma.json") + + # Large location parameter and small scale parameter: + loc = np.linspace(-100.0, 100.0, n) + sigma = np.linspace(0.1, 1.0, n) + gen(loc, sigma, "large_mu_small_sigma.json") + + # Large location parameter and large scale parameter: + loc = np.linspace(-100.0, 100.0, n) + sigma = np.linspace(1.0, 10.0, n) + gen(loc, sigma, "large_mu_large_sigma.json") + + +if __name__ == "__main__": + main() diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_large_sigma.json b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_large_sigma.json new file mode 100644 index 000000000000..ebab86faa30c --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_large_sigma.json @@ -0,0 +1 @@ +{"mu": [-1.0, -0.9959919839679359, -0.9919839679358717, -0.9879759519038076, -0.9839679358717435, -0.9799599198396793, -0.9759519038076152, -0.9719438877755511, -0.9679358717434869, -0.9639278557114228, -0.9599198396793587, -0.9559118236472945, -0.9519038076152304, -0.9478957915831663, -0.9438877755511023, -0.9398797595190381, -0.935871743486974, -0.9318637274549099, -0.9278557114228457, -0.9238476953907816, -0.9198396793587175, -0.9158316633266533, -0.9118236472945892, -0.9078156312625251, -0.9038076152304609, -0.8997995991983968, -0.8957915831663327, -0.8917835671342685, -0.8877755511022044, -0.8837675350701403, -0.8797595190380761, -0.875751503006012, -0.8717434869739479, -0.8677354709418837, -0.8637274549098196, -0.8597194388777555, -0.8557114228456915, -0.8517034068136273, -0.8476953907815632, -0.8436873747494991, -0.8396793587174349, -0.8356713426853708, -0.8316633266533067, -0.8276553106212425, -0.8236472945891784, -0.8196392785571143, -0.8156312625250501, -0.811623246492986, -0.8076152304609219, -0.8036072144288577, -0.7995991983967936, -0.7955911823647295, -0.7915831663326653, -0.7875751503006012, -0.7835671342685371, -0.779559118236473, -0.7755511022044088, -0.7715430861723447, -0.7675350701402806, -0.7635270541082164, -0.7595190380761523, -0.7555110220440882, -0.751503006012024, -0.7474949899799599, -0.7434869739478958, -0.7394789579158316, -0.7354709418837675, -0.7314629258517034, -0.7274549098196392, -0.7234468937875751, -0.719438877755511, -0.7154308617234469, -0.7114228456913828, -0.7074148296593187, -0.7034068136272545, -0.6993987975951904, -0.6953907815631263, -0.6913827655310621, -0.687374749498998, -0.6833667334669339, -0.6793587174348698, -0.6753507014028056, -0.6713426853707415, -0.6673346693386774, -0.6633266533066133, -0.6593186372745492, -0.6553106212424851, -0.6513026052104209, -0.6472945891783568, -0.6432865731462927, -0.6392785571142285, -0.6352705410821644, -0.6312625250501003, -0.6272545090180361, -0.623246492985972, -0.6192384769539079, -0.6152304609218437, -0.6112224448897796, -0.6072144288577155, -0.6032064128256514, -0.5991983967935872, -0.5951903807615231, -0.591182364729459, -0.5871743486973948, -0.5831663326653307, -0.5791583166332666, -0.5751503006012024, -0.5711422845691383, -0.5671342685370742, -0.56312625250501, -0.5591182364729459, -0.5551102204408818, -0.5511022044088176, -0.5470941883767535, -0.5430861723446894, -0.5390781563126252, -0.5350701402805611, -0.531062124248497, -0.5270541082164328, -0.5230460921843687, -0.5190380761523046, -0.5150300601202404, -0.5110220440881764, -0.5070140280561123, -0.5030060120240482, -0.498997995991984, -0.4949899799599199, -0.49098196392785576, -0.4869739478957916, -0.4829659318637275, -0.47895791583166336, -0.47494989979959923, -0.4709418837675351, -0.46693386773547096, -0.46292585170340683, -0.4589178356713427, -0.45490981963927857, -0.45090180360721444, -0.4468937875751503, -0.44288577154308617, -0.43887775551102204, -0.434869739478958, -0.4308617234468939, -0.42685370741482975, -0.4228456913827656, -0.4188376753507015, -0.41482965931863736, -0.4108216432865732, -0.4068136272545091, -0.40280561122244496, -0.3987975951903808, -0.3947895791583167, -0.39078156312625256, -0.38677354709418843, -0.3827655310621243, -0.37875751503006017, -0.37474949899799603, -0.3707414829659319, -0.36673346693386777, -0.36272545090180364, -0.3587174348697395, -0.35470941883767537, -0.35070140280561124, -0.3466933867735471, -0.342685370741483, -0.33867735470941884, -0.3346693386773547, -0.3306613226452907, -0.32665330661322656, -0.3226452905811624, -0.3186372745490983, -0.31462925851703416, -0.31062124248497003, -0.3066132264529059, -0.30260521042084176, -0.29859719438877763, -0.2945891783567135, -0.29058116232464937, -0.28657314629258523, -0.2825651302605211, -0.27855711422845697, -0.27454909819639284, -0.2705410821643287, -0.2665330661322646, -0.26252505010020044, -0.2585170340681363, -0.2545090180360722, -0.25050100200400804, -0.2464929859719439, -0.24248496993987978, -0.23847695390781565, -0.23446893787575152, -0.2304609218436875, -0.22645290581162336, -0.22244488977955923, -0.2184368737474951, -0.21442885771543096, -0.21042084168336683, -0.2064128256513027, -0.20240480961923857, -0.19839679358717444, -0.1943887775551103, -0.19038076152304617, -0.18637274549098204, -0.1823647294589179, -0.17835671342685377, -0.17434869739478964, -0.1703406813627255, -0.16633266533066138, -0.16232464929859725, -0.1583166332665331, -0.15430861723446898, -0.15030060120240485, -0.14629258517034072, -0.14228456913827658, -0.13827655310621245, -0.13426853707414832, -0.1302605210420842, -0.12625250501002017, -0.12224448897795603, -0.1182364729458919, -0.11422845691382777, -0.11022044088176364, -0.1062124248496995, -0.10220440881763537, -0.09819639278557124, -0.09418837675350711, -0.09018036072144298, -0.08617234468937884, -0.08216432865731471, -0.07815631262525058, -0.07414829659318645, -0.07014028056112231, -0.06613226452905818, -0.06212424849699405, -0.05811623246492992, -0.054108216432865786, -0.05010020040080165, -0.04609218436873752, -0.04208416833667339, -0.038076152304609256, -0.034068136272545124, -0.030060120240480992, -0.02605210420841686, -0.02204408817635284, -0.018036072144288706, -0.014028056112224574, -0.010020040080160442, -0.006012024048096309, -0.002004008016032177, 0.002004008016031955, 0.006012024048096087, 0.01002004008016022, 0.014028056112224352, 0.018036072144288484, 0.022044088176352616, 0.02605210420841675, 0.03006012024048088, 0.03406813627254501, 0.038076152304609145, 0.04208416833667328, 0.04609218436873741, 0.05010020040080154, 0.054108216432865675, 0.05811623246492981, 0.06212424849699394, 0.06613226452905807, 0.0701402805611222, 0.07414829659318634, 0.07815631262525047, 0.0821643286573146, 0.08617234468937873, 0.09018036072144286, 0.094188376753507, 0.09819639278557113, 0.10220440881763526, 0.1062124248496994, 0.11022044088176353, 0.11422845691382766, 0.11823647294589179, 0.12224448897795592, 0.12625250501002006, 0.13026052104208397, 0.1342685370741481, 0.13827655310621223, 0.14228456913827636, 0.1462925851703405, 0.15030060120240463, 0.15430861723446876, 0.1583166332665329, 0.16232464929859702, 0.16633266533066116, 0.1703406813627253, 0.17434869739478942, 0.17835671342685355, 0.18236472945891768, 0.18637274549098182, 0.19038076152304595, 0.19438877755511008, 0.1983967935871742, 0.20240480961923835, 0.20641282565130248, 0.2104208416833666, 0.21442885771543074, 0.21843687374749488, 0.222444889779559, 0.22645290581162314, 0.23046092184368727, 0.2344689378757514, 0.23847695390781554, 0.24248496993987967, 0.2464929859719438, 0.25050100200400793, 0.25450901803607207, 0.2585170340681362, 0.26252505010020033, 0.26653306613226446, 0.2705410821643286, 0.2745490981963927, 0.27855711422845686, 0.282565130260521, 0.2865731462925851, 0.29058116232464926, 0.2945891783567134, 0.2985971943887775, 0.30260521042084165, 0.3066132264529058, 0.3106212424849699, 0.31462925851703405, 0.3186372745490982, 0.3226452905811623, 0.32665330661322645, 0.3306613226452906, 0.3346693386773545, 0.3386773547094186, 0.34268537074148275, 0.3466933867735469, 0.350701402805611, 0.35470941883767515, 0.3587174348697393, 0.3627254509018034, 0.36673346693386755, 0.3707414829659317, 0.3747494989979958, 0.37875751503005994, 0.3827655310621241, 0.3867735470941882, 0.39078156312625234, 0.3947895791583165, 0.3987975951903806, 0.40280561122244474, 0.40681362725450887, 0.410821643286573, 0.41482965931863713, 0.41883767535070127, 0.4228456913827654, 0.42685370741482953, 0.43086172344689366, 0.4348697394789578, 0.4388777555110219, 0.44288577154308606, 0.4468937875751502, 0.4509018036072143, 0.45490981963927846, 0.4589178356713426, 0.4629258517034067, 0.46693386773547085, 0.470941883767535, 0.4749498997995991, 0.47895791583166325, 0.4829659318637274, 0.4869739478957915, 0.49098196392785565, 0.4949899799599198, 0.4989979959919839, 0.503006012024048, 0.5070140280561122, 0.5110220440881763, 0.5150300601202404, 0.5190380761523046, 0.5230460921843687, 0.5270541082164328, 0.531062124248497, 0.5350701402805611, 0.539078156312625, 0.5430861723446891, 0.5470941883767533, 0.5511022044088174, 0.5551102204408815, 0.5591182364729457, 0.5631262525050098, 0.5671342685370739, 0.5711422845691381, 0.5751503006012022, 0.5791583166332663, 0.5831663326653305, 0.5871743486973946, 0.5911823647294587, 0.5951903807615229, 0.599198396793587, 0.6032064128256511, 0.6072144288577153, 0.6112224448897794, 0.6152304609218435, 0.6192384769539077, 0.6232464929859718, 0.6272545090180359, 0.6312625250501, 0.6352705410821642, 0.6392785571142283, 0.6432865731462925, 0.6472945891783566, 0.6513026052104207, 0.6553106212424848, 0.659318637274549, 0.6633266533066131, 0.6673346693386772, 0.6713426853707414, 0.6753507014028055, 0.6793587174348696, 0.6833667334669338, 0.6873747494989979, 0.691382765531062, 0.6953907815631262, 0.6993987975951903, 0.7034068136272544, 0.7074148296593186, 0.7114228456913827, 0.7154308617234468, 0.719438877755511, 0.7234468937875751, 0.7274549098196392, 0.7314629258517034, 0.7354709418837675, 0.7394789579158316, 0.7434869739478958, 0.7474949899799597, 0.7515030060120238, 0.7555110220440879, 0.7595190380761521, 0.7635270541082162, 0.7675350701402803, 0.7715430861723445, 0.7755511022044086, 0.7795591182364727, 0.7835671342685369, 0.787575150300601, 0.7915831663326651, 0.7955911823647293, 0.7995991983967934, 0.8036072144288575, 0.8076152304609217, 0.8116232464929858, 0.8156312625250499, 0.819639278557114, 0.8236472945891782, 0.8276553106212423, 0.8316633266533064, 0.8356713426853706, 0.8396793587174347, 0.8436873747494988, 0.847695390781563, 0.8517034068136271, 0.8557114228456912, 0.8597194388777554, 0.8637274549098195, 0.8677354709418836, 0.8717434869739478, 0.8757515030060119, 0.879759519038076, 0.8837675350701402, 0.8877755511022043, 0.8917835671342684, 0.8957915831663326, 0.8997995991983967, 0.9038076152304608, 0.907815631262525, 0.9118236472945891, 0.9158316633266532, 0.9198396793587174, 0.9238476953907815, 0.9278557114228456, 0.9318637274549098, 0.9358717434869739, 0.939879759519038, 0.9438877755511021, 0.9478957915831663, 0.9519038076152302, 0.9559118236472943, 0.9599198396793585, 0.9639278557114226, 0.9679358717434867, 0.9719438877755509, 0.975951903807615, 0.9799599198396791, 0.9839679358717432, 0.9879759519038074, 0.9919839679358715, 0.9959919839679356, 1.0], "sigma": [1.0, 1.0180360721442885, 1.0360721442885772, 1.0541082164328657, 1.0721442885771544, 1.0901803607214429, 1.1082164328657313, 1.12625250501002, 1.1442885771543085, 1.1623246492985972, 1.1803607214428857, 1.1983967935871744, 1.216432865731463, 1.2344689378757514, 1.25250501002004, 1.2705410821643286, 1.2885771543086173, 1.3066132264529058, 1.3246492985971945, 1.342685370741483, 1.3607214428857715, 1.3787575150300602, 1.3967935871743486, 1.4148296593186374, 1.4328657314629258, 1.4509018036072145, 1.468937875751503, 1.4869739478957915, 1.5050100200400802, 1.5230460921843687, 1.5410821643286572, 1.559118236472946, 1.5771543086172346, 1.595190380761523, 1.6132264529058116, 1.6312625250501003, 1.6492985971943888, 1.6673346693386772, 1.685370741482966, 1.7034068136272547, 1.7214428857715431, 1.7394789579158316, 1.7575150300601203, 1.7755511022044088, 1.7935871743486973, 1.811623246492986, 1.8296593186372747, 1.8476953907815632, 1.8657314629258517, 1.8837675350701404, 1.9018036072144289, 1.9198396793587174, 1.937875751503006, 1.9559118236472948, 1.9739478957915833, 1.9919839679358717, 2.0100200400801604, 2.0280561122244487, 2.0460921843687374, 2.064128256513026, 2.0821643286573144, 2.1002004008016035, 2.118236472945892, 2.1362725450901805, 2.154308617234469, 2.1723446893787575, 2.190380761523046, 2.208416833667335, 2.226452905811623, 2.244488977955912, 2.2625250501002006, 2.280561122244489, 2.2985971943887775, 2.3166332665330662, 2.3346693386773545, 2.3527054108216436, 2.370741482965932, 2.38877755511022, 2.4068136272545093, 2.4248496993987976, 2.4428857715430863, 2.460921843687375, 2.4789579158316633, 2.496993987975952, 2.5150300601202407, 2.533066132264529, 2.5511022044088176, 2.5691382765531063, 2.5871743486973946, 2.6052104208416837, 2.623246492985972, 2.6412825651302603, 2.6593186372745494, 2.6773547094188377, 2.6953907815631264, 2.713426853707415, 2.7314629258517034, 2.749498997995992, 2.7675350701402808, 2.785571142284569, 2.8036072144288577, 2.8216432865731464, 2.8396793587174347, 2.8577154308617234, 2.875751503006012, 2.8937875751503004, 2.9118236472945895, 2.929859719438878, 2.9478957915831665, 2.965931863727455, 2.9839679358717435, 3.002004008016032, 3.020040080160321, 3.038076152304609, 3.056112224448898, 3.0741482965931866, 3.092184368737475, 3.1102204408817635, 3.1282565130260522, 3.146292585170341, 3.164328657314629, 3.182364729458918, 3.2004008016032066, 3.218436873747495, 3.2364729458917836, 3.2545090180360723, 3.272545090180361, 3.2905811623246493, 3.308617234468938, 3.3266533066132267, 3.344689378757515, 3.3627254509018036, 3.3807615230460923, 3.398797595190381, 3.4168336673346693, 3.434869739478958, 3.4529058116232467, 3.470941883767535, 3.4889779559118237, 3.5070140280561124, 3.525050100200401, 3.5430861723446894, 3.561122244488978, 3.579158316633267, 3.597194388777555, 3.6152304609218437, 3.6332665330661325, 3.651302605210421, 3.6693386773547094, 3.687374749498998, 3.705410821643287, 3.723446893787575, 3.741482965931864, 3.7595190380761525, 3.7775551102204408, 3.7955911823647295, 3.813627254509018, 3.831663326653307, 3.849699398797595, 3.867735470941884, 3.8857715430861726, 3.903807615230461, 3.9218436873747495, 3.9398797595190382, 3.957915831663327, 3.975951903807615, 3.993987975951904, 4.012024048096192, 4.030060120240481, 4.04809619238477, 4.066132264529058, 4.084168336673347, 4.102204408817635, 4.1202404809619235, 4.138276553106213, 4.156312625250501, 4.174348697394789, 4.192384769539078, 4.2104208416833675, 4.228456913827655, 4.246492985971944, 4.264529058116233, 4.2825651302605205, 4.30060120240481, 4.318637274549099, 4.336673346693387, 4.354709418837675, 4.3727454909819645, 4.390781563126253, 4.408817635270541, 4.42685370741483, 4.4448897795591185, 4.462925851703407, 4.480961923847696, 4.498997995991984, 4.517034068136272, 4.5350701402805615, 4.55310621242485, 4.571142284569138, 4.589178356713427, 4.6072144288577155, 4.625250501002004, 4.643286573146293, 4.661322645290581, 4.679358717434869, 4.697394789579159, 4.715430861723447, 4.733466933867735, 4.751503006012024, 4.769539078156313, 4.787575150300601, 4.80561122244489, 4.823647294589179, 4.841683366733466, 4.859719438877756, 4.877755511022045, 4.895791583166333, 4.913827655310621, 4.93186372745491, 4.949899799599199, 4.967935871743487, 4.985971943887776, 5.004008016032064, 5.022044088176353, 5.040080160320642, 5.05811623246493, 5.076152304609218, 5.094188376753507, 5.112224448897796, 5.130260521042084, 5.148296593186373, 5.166332665330661, 5.18436873747495, 5.202404809619239, 5.220440881763527, 5.238476953907816, 5.2565130260521045, 5.274549098196393, 5.292585170340682, 5.31062124248497, 5.328657314629258, 5.3466933867735476, 5.364729458917836, 5.382765531062124, 5.400801603206413, 5.4188376753507015, 5.43687374749499, 5.454909819639279, 5.472945891783567, 5.490981963927856, 5.509018036072145, 5.527054108216433, 5.545090180360722, 5.56312625250501, 5.5811623246492985, 5.599198396793588, 5.617234468937876, 5.635270541082164, 5.653306613226453, 5.671342685370742, 5.68937875751503, 5.707414829659319, 5.725450901803607, 5.7434869739478955, 5.761523046092185, 5.779559118236473, 5.797595190380762, 5.81563126252505, 5.833667334669339, 5.851703406813628, 5.869739478957916, 5.887775551102204, 5.9058116232464934, 5.923847695390782, 5.94188376753507, 5.959919839679359, 5.977955911823647, 5.995991983967936, 6.014028056112225, 6.032064128256513, 6.050100200400802, 6.0681362725450905, 6.086172344689379, 6.104208416833668, 6.122244488977956, 6.140280561122244, 6.158316633266534, 6.176352705410822, 6.19438877755511, 6.212424849699399, 6.2304609218436875, 6.248496993987976, 6.266533066132265, 6.284569138276553, 6.302605210420842, 6.320641282565131, 6.338677354709419, 6.356713426853708, 6.374749498997996, 6.3927855711422845, 6.410821643286574, 6.428857715430862, 6.44689378757515, 6.464929859719439, 6.482965931863728, 6.501002004008016, 6.519038076152305, 6.537074148296593, 6.5551102204408815, 6.573146292585171, 6.591182364729459, 6.609218436873748, 6.627254509018036, 6.645290581162325, 6.663326653306614, 6.681362725450902, 6.69939879759519, 6.7174348697394795, 6.735470941883768, 6.753507014028056, 6.771543086172345, 6.789579158316633, 6.807615230460922, 6.825651302605211, 6.843687374749499, 6.861723446893788, 6.8797595190380765, 6.897795591182365, 6.915831663326654, 6.933867735470942, 6.95190380761523, 6.96993987975952, 6.987975951903808, 7.006012024048096, 7.024048096192385, 7.0420841683366735, 7.060120240480962, 7.078156312625251, 7.096192384769539, 7.114228456913828, 7.132264529058117, 7.150300601202405, 7.168336673346694, 7.186372745490982, 7.2044088176352705, 7.22244488977956, 7.240480961923848, 7.258517034068136, 7.276553106212425, 7.294589178356714, 7.312625250501002, 7.330661322645291, 7.348697394789579, 7.3667334669338675, 7.384769539078157, 7.402805611222445, 7.420841683366734, 7.438877755511022, 7.456913827655311, 7.4749498997996, 7.492985971943888, 7.511022044088176, 7.5290581162324655, 7.547094188376754, 7.565130260521042, 7.583166332665331, 7.601202404809619, 7.619238476953908, 7.637274549098197, 7.655310621242485, 7.673346693386774, 7.6913827655310625, 7.709418837675351, 7.72745490981964, 7.745490981963928, 7.763527054108216, 7.781563126252506, 7.799599198396794, 7.817635270541082, 7.835671342685371, 7.8537074148296595, 7.871743486973948, 7.889779559118237, 7.907815631262525, 7.925851703406813, 7.943887775551103, 7.961923847695391, 7.97995991983968, 7.997995991983968, 8.016032064128257, 8.034068136272545, 8.052104208416834, 8.070140280561123, 8.08817635270541, 8.1062124248497, 8.124248496993989, 8.142284569138276, 8.160320641282565, 8.178356713426854, 8.196392785571142, 8.214428857715431, 8.23246492985972, 8.250501002004007, 8.268537074148297, 8.286573146292586, 8.304609218436873, 8.322645290581162, 8.340681362725451, 8.358717434869739, 8.376753507014028, 8.394789579158317, 8.412825651302605, 8.430861723446894, 8.448897795591183, 8.46693386773547, 8.484969939879761, 8.503006012024048, 8.521042084168336, 8.539078156312627, 8.557114228456914, 8.575150300601202, 8.593186372745492, 8.61122244488978, 8.629258517034067, 8.647294589178358, 8.665330661322646, 8.683366733466933, 8.701402805611224, 8.719438877755511, 8.737474949899799, 8.75551102204409, 8.773547094188377, 8.791583166332666, 8.809619238476955, 8.827655310621243, 8.845691382765532, 8.86372745490982, 8.881763527054108, 8.899799599198397, 8.917835671342687, 8.935871743486974, 8.953907815631263, 8.971943887775552, 8.98997995991984, 9.008016032064129, 9.026052104208418, 9.044088176352705, 9.062124248496994, 9.080160320641284, 9.098196392785571, 9.11623246492986, 9.13426853707415, 9.152304609218437, 9.170340681362726, 9.188376753507015, 9.206412825651302, 9.224448897795591, 9.24248496993988, 9.260521042084168, 9.278557114228457, 9.296593186372746, 9.314629258517034, 9.332665330661323, 9.350701402805612, 9.3687374749499, 9.386773547094188, 9.404809619238478, 9.422845691382767, 9.440881763527054, 9.458917835671343, 9.476953907815632, 9.49498997995992, 9.513026052104209, 9.531062124248498, 9.549098196392785, 9.567134268537075, 9.585170340681364, 9.603206412825651, 9.62124248496994, 9.63927855711423, 9.657314629258517, 9.675350701402806, 9.693386773547095, 9.711422845691382, 9.729458917835672, 9.74749498997996, 9.765531062124248, 9.783567134268537, 9.801603206412826, 9.819639278557114, 9.837675350701403, 9.855711422845692, 9.87374749498998, 9.891783567134269, 9.909819639278558, 9.927855711422845, 9.945891783567134, 9.963927855711423, 9.981963927855713, 10.0], "expected": [0.11685027506808487, 0.1211033264331077, 0.12543240056334448, 0.12983749745879514, 0.13431861711945975, 0.13887575954533823, 0.14350892473643062, 0.14821811269273696, 0.15300332341425718, 0.15786455690099138, 0.16280181315293943, 0.16781509217010143, 0.17290439395247734, 0.1780697185000671, 0.18331106581287085, 0.18862843589088849, 0.19402182873412005, 0.1994912443425655, 0.20503668271622494, 0.21065814385509818, 0.21635562775918535, 0.2221291344284865, 0.22797866386300153, 0.2339042160627305, 0.23990579102767332, 0.24598338875783016, 0.2521370092532008, 0.2583666525137854, 0.26467231853958395, 0.27105400733059637, 0.27751171888682263, 0.28404545320826297, 0.2906552102949172, 0.2973409901467852, 0.3041027927638672, 0.3109406181461632, 0.3178544662936729, 0.32484433720639666, 0.33191023088433436, 0.33905214732748595, 0.3462700865358514, 0.3535640485094308, 0.36093403324822415, 0.3683800407522313, 0.37590207102145246, 0.3835001240558875, 0.39117419985553653, 0.3989242984203994, 0.40675041975047616, 0.41465256384576693, 0.4226307307062715, 0.43068492033199, 0.4388151327229225, 0.4470213678790689, 0.45530362580042916, 0.4636619064870033, 0.4720962099387914, 0.48060653615579335, 0.4891928851380093, 0.4978552568854392, 0.5065936513980829, 0.5154080686759408, 0.5242985087190122, 0.5332649715272978, 0.5423074571007973, 0.5514259654395104, 0.5606204965434377, 0.5698910504125789, 0.5792376270469339, 0.588660226446503, 0.5981588486112859, 0.6077334935412825, 0.6173841612364933, 0.6271108516969179, 0.6369135649225564, 0.6467923009134092, 0.6567470596694754, 0.6667778411907554, 0.67688464547725, 0.687067472528958, 0.69732632234588, 0.707661194928016, 0.7180720902753658, 0.7285590083879296, 0.7391219492657074, 0.7497609129086988, 0.7604758993169044, 0.7712669084903239, 0.7821339404289571, 0.7930769951328047, 0.8040960726018657, 0.8151911728361405, 0.8263622958356299, 0.8376094416003326, 0.8489326101302495, 0.8603318014253805, 0.8718070154857248, 0.8833582523112835, 0.894985511902056, 0.9066887942580422, 0.9184680993792426, 0.930323427265657, 0.9422547779172848, 0.954262151334127, 0.9663455475161831, 0.9785049664634526, 0.9907404081759368, 1.0030518726536344, 1.015439359896546, 1.0279028699046717, 1.040442402678011, 1.0530579582165644, 1.0657495365203318, 1.0785171375893126, 1.091360761423508, 1.1042804080229172, 1.1172760773875396, 1.1303477695173767, 1.1434954844124274, 1.1567192220726923, 1.1700189824981708, 1.1833947656888633, 1.1968465716447698, 1.2103744003658898, 1.2239782518522242, 1.2376581261037725, 1.2514140231205346, 1.2652459429025105, 1.2791538854497004, 1.2931378507621043, 1.3071978388397216, 1.3213338496825535, 1.335545883290599, 1.3498339396638586, 1.364198018802332, 1.3786381207060192, 1.3931542453749206, 1.4077463928090355, 1.4224145630083644, 1.4371587559729075, 1.4519789717026645, 1.4668752101976352, 1.4818474714578198, 1.4968957554832185, 1.512020062273831, 1.5272203918296574, 1.542496744150698, 1.5578491192369524, 1.5732775170884201, 1.5887819377051022, 1.6043623810869985, 1.620018847234108, 1.635751336146432, 1.65155984782397, 1.6674443822667213, 1.6834049394746868, 1.6994415194478665, 1.71555412218626, 1.731742747689867, 1.7480073959586886, 1.7643480669927236, 1.7807647607919725, 1.7972574773564356, 1.8138262166861125, 1.8304709787810034, 1.8471917636411077, 1.8639885712664266, 1.880861401656959, 1.8978102548127058, 1.9148351307336657, 1.9319360294198398, 1.9491129508712286, 1.9663658950878304, 1.9836948620696462, 2.0010998518166767, 2.01858086432892, 2.0361378996063775, 2.05377095764905, 2.071480038456936, 2.0892651420300345, 2.1071262683683485, 2.125063417471876, 2.143076589340616, 2.161165783974572, 2.1793310013737415, 2.1975722415381242, 2.2158895044677207, 2.234282790162532, 2.2527520986225564, 2.271297429847795, 2.289918783838248, 2.308616160593914, 2.3273895601147943, 2.346238982400889, 2.3651644274521972, 2.384165895268719, 2.4032433858504554, 2.4223968991974054, 2.4416264353095682, 2.460931994186947, 2.480313575829538, 2.4997711802373437, 2.519304807410364, 2.538914457348597, 2.558600130052044, 2.5783618255207057, 2.5981995437545806, 2.6181132847536692, 2.638103048517973, 2.6581688350474906, 2.6783106443422198, 2.6985284764021653, 2.7188223312273245, 2.739192208817696, 2.759638109173283, 2.780160032294084, 2.800757978180098, 2.821431946831326, 2.842181938247769, 2.8630079524294243, 2.883909989376294, 2.904888049088379, 2.9259421315656757, 2.9470722368081876, 2.9682783648159132, 2.989560515588853, 3.0109186891270054, 3.032352885430374, 3.053863104498955, 3.0754493463327495, 3.0971116109317594, 3.118849898295982, 3.1406642084254184, 3.1625545413200697, 3.1845208969799343, 3.206563275405014, 3.228681676595306, 3.2508761005508124, 3.273146547271533, 3.2954930167574674, 3.3179155090086154, 3.340414024024978, 3.362988561806554, 3.385639122353343, 3.408365705665348, 3.431168311742565, 3.4540469405849965, 3.4770015921926434, 3.500032266565502, 3.5231389637035764, 3.546321683606863, 3.569580426275364, 3.59291519170908, 3.6163259799080087, 3.639812790872152, 3.663375624601509, 3.68701448109608, 3.7107293603558635, 3.7345202623808635, 3.7583871871710754, 3.7823301347265015, 3.806349105047143, 3.830444098132997, 3.8546151139840648, 3.8788621526003473, 3.9031852139818435, 3.927584298128554, 3.9520594050404774, 3.976610534717615, 4.001237687159967, 4.025940862367532, 4.0507200603403115, 4.075575281078306, 4.1005065245815135, 4.125513790849934, 4.15059707988357, 4.175756391682419, 4.200991726246481, 4.2263030835757585, 4.25169046367025, 4.2771538665299556, 4.302693292154873, 4.328308740545006, 4.3540002117003525, 4.379767705620913, 4.405611222306686, 4.431530761757676, 4.457526323973878, 4.483597908955293, 4.5097455167019245, 4.535969147213767, 4.562268800490825, 4.588644476533098, 4.615096175340582, 4.641623896913283, 4.668227641251196, 4.694907408354323, 4.721663198222665, 4.74849501085622, 4.775402846254989, 4.802386704418972, 4.82944658534817, 4.856582489042579, 4.883794415502205, 4.911082364727044, 4.938446336717096, 4.965886331472364, 4.993402348992843, 5.020994389278537, 5.048662452329446, 5.076406538145568, 5.104226646726905, 5.132122778073454, 5.160094932185218, 5.188143109062197, 5.2162673087043885, 5.244467531111793, 5.272743776284414, 5.3010960442222474, 5.329524334925294, 5.358028648393557, 5.38660898462703, 5.41526534362572, 5.4439977253896235, 5.47280612991874, 5.501690557213072, 5.530651007272616, 5.559687480097375, 5.588799975687348, 5.617988494042534, 5.647253035162934, 5.676593599048549, 5.706010185699378, 5.735502795115418, 5.765071427296676, 5.794716082243145, 5.824436759954829, 5.854233460431727, 5.884106183673839, 5.914054929681166, 5.944079698453704, 5.974180489991458, 6.004357304294426, 6.034610141362607, 6.064939001196002, 6.0953438837946115, 6.125824789158434, 6.156381717287471, 6.187014668181723, 6.217723641841187, 6.248508638265865, 6.279369657455759, 6.310306699410865, 6.341319764131185, 6.37240885161672, 6.403573961867468, 6.434815094883431, 6.466132250664607, 6.497525429210997, 6.528994630522601, 6.560539854599419, 6.59216110144145, 6.623858371048697, 6.655631663421156, 6.6874809785588285, 6.7194063164617175, 6.751407677129818, 6.783485060563133, 6.815638466761663, 6.847867895725406, 6.880173347454363, 6.912554821948534, 6.945012319207919, 6.977545839232518, 7.01015538202233, 7.042840947577356, 7.075602535897598, 7.108440146983052, 7.14135378083372, 7.174343437449603, 7.207409116830698, 7.240550818977008, 7.273768543888533, 7.307062291565271, 7.340432062007222, 7.373877855214388, 7.407399671186768, 7.440997509924362, 7.474671371427169, 7.5084212556951915, 7.542247162728424, 7.576149092526875, 7.610127045090539, 7.644181020419414, 7.678311018513505, 7.712517039372812, 7.746799082997329, 7.781157149387062, 7.8155912385420105, 7.850101350462168, 7.884687485147544, 7.919349642598133, 7.954087822813933, 7.988902025794951, 8.023792251541181, 8.058758500052624, 8.093800771329283, 8.128919065371155, 8.16411338217824, 8.19938372175054, 8.234730084088055, 8.27015246919078, 8.305650877058723, 8.341225307691879, 8.376875761090245, 8.412602237253832, 8.448404736182628, 8.484283257876637, 8.520237802335865, 8.556268369560303, 8.592374959549952, 8.628557572304823, 8.664816207824902, 8.701150866110194, 8.737561547160707, 8.774048250976428, 8.810610977557362, 8.847249726903515, 8.883964499014878, 8.920755293891453, 8.957622111533249, 8.994564951940252, 9.031583815112475, 9.068678701049908, 9.105849609752553, 9.143096541220418, 9.180419495453494, 9.21781847245178, 9.255293472215284, 9.292844494744003, 9.33047154003793, 9.368174608097076, 9.405953698921438, 9.443808812511007, 9.481739948865794, 9.519747107985797, 9.55783028987101, 9.595989494521438, 9.634224721937082, 9.672535972117936, 9.710923245064008, 9.749386540775292, 9.787925859251787, 9.826541200493502, 9.865232564500428, 9.903999951272564, 9.94284336080992, 9.98176279311249, 10.020758248180266, 10.059829726013263, 10.098977226611476, 10.138200749974894, 10.177500296103533, 10.216875864997386, 10.256327456656448, 10.295855071080728, 10.33545870827022, 10.375138368224931, 10.414894050944849, 10.454725756429983, 10.494633484680334, 10.534617235695894, 10.57467700947667, 10.61481280602266, 10.655024625333864, 10.695312467410282, 10.735676332251915, 10.77611621985876, 10.81663213023082, 10.857224063368095, 10.89789201927058, 10.938635997938283, 10.979455999371199, 11.020352023569325, 11.06132407053267, 11.10237214026123, 11.143496232754996, 11.184696348013984, 11.225972486038184, 11.267324646827593, 11.30875283038222, 11.350257036702065, 11.391837265787116, 11.433493517637384, 11.47522579225287, 11.517034089633562, 11.558918409779473, 11.600878752690598, 11.64291511836694, 11.685027506808488]} diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_small_sigma.json b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_small_sigma.json new file mode 100644 index 000000000000..9b17932d5c0a --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_small_sigma.json @@ -0,0 +1 @@ +{"mu": [-1.0, -0.9959919839679359, -0.9919839679358717, -0.9879759519038076, -0.9839679358717435, -0.9799599198396793, -0.9759519038076152, -0.9719438877755511, -0.9679358717434869, -0.9639278557114228, -0.9599198396793587, -0.9559118236472945, -0.9519038076152304, -0.9478957915831663, -0.9438877755511023, -0.9398797595190381, -0.935871743486974, -0.9318637274549099, -0.9278557114228457, -0.9238476953907816, -0.9198396793587175, -0.9158316633266533, -0.9118236472945892, -0.9078156312625251, -0.9038076152304609, -0.8997995991983968, -0.8957915831663327, -0.8917835671342685, -0.8877755511022044, -0.8837675350701403, -0.8797595190380761, -0.875751503006012, -0.8717434869739479, -0.8677354709418837, -0.8637274549098196, -0.8597194388777555, -0.8557114228456915, -0.8517034068136273, -0.8476953907815632, -0.8436873747494991, -0.8396793587174349, -0.8356713426853708, -0.8316633266533067, -0.8276553106212425, -0.8236472945891784, -0.8196392785571143, -0.8156312625250501, -0.811623246492986, -0.8076152304609219, -0.8036072144288577, -0.7995991983967936, -0.7955911823647295, -0.7915831663326653, -0.7875751503006012, -0.7835671342685371, -0.779559118236473, -0.7755511022044088, -0.7715430861723447, -0.7675350701402806, -0.7635270541082164, -0.7595190380761523, -0.7555110220440882, -0.751503006012024, -0.7474949899799599, -0.7434869739478958, -0.7394789579158316, -0.7354709418837675, -0.7314629258517034, -0.7274549098196392, -0.7234468937875751, -0.719438877755511, -0.7154308617234469, -0.7114228456913828, -0.7074148296593187, -0.7034068136272545, -0.6993987975951904, -0.6953907815631263, -0.6913827655310621, -0.687374749498998, -0.6833667334669339, -0.6793587174348698, -0.6753507014028056, -0.6713426853707415, -0.6673346693386774, -0.6633266533066133, -0.6593186372745492, -0.6553106212424851, -0.6513026052104209, -0.6472945891783568, -0.6432865731462927, -0.6392785571142285, -0.6352705410821644, -0.6312625250501003, -0.6272545090180361, -0.623246492985972, -0.6192384769539079, -0.6152304609218437, -0.6112224448897796, -0.6072144288577155, -0.6032064128256514, -0.5991983967935872, -0.5951903807615231, -0.591182364729459, -0.5871743486973948, -0.5831663326653307, -0.5791583166332666, -0.5751503006012024, -0.5711422845691383, -0.5671342685370742, -0.56312625250501, -0.5591182364729459, -0.5551102204408818, -0.5511022044088176, -0.5470941883767535, -0.5430861723446894, -0.5390781563126252, -0.5350701402805611, -0.531062124248497, -0.5270541082164328, -0.5230460921843687, -0.5190380761523046, -0.5150300601202404, -0.5110220440881764, -0.5070140280561123, -0.5030060120240482, -0.498997995991984, -0.4949899799599199, -0.49098196392785576, -0.4869739478957916, -0.4829659318637275, -0.47895791583166336, -0.47494989979959923, -0.4709418837675351, -0.46693386773547096, -0.46292585170340683, -0.4589178356713427, -0.45490981963927857, -0.45090180360721444, -0.4468937875751503, -0.44288577154308617, -0.43887775551102204, -0.434869739478958, -0.4308617234468939, -0.42685370741482975, -0.4228456913827656, -0.4188376753507015, -0.41482965931863736, -0.4108216432865732, -0.4068136272545091, -0.40280561122244496, -0.3987975951903808, -0.3947895791583167, -0.39078156312625256, -0.38677354709418843, -0.3827655310621243, -0.37875751503006017, -0.37474949899799603, -0.3707414829659319, -0.36673346693386777, -0.36272545090180364, -0.3587174348697395, -0.35470941883767537, -0.35070140280561124, -0.3466933867735471, -0.342685370741483, -0.33867735470941884, -0.3346693386773547, -0.3306613226452907, -0.32665330661322656, -0.3226452905811624, -0.3186372745490983, -0.31462925851703416, -0.31062124248497003, -0.3066132264529059, -0.30260521042084176, -0.29859719438877763, -0.2945891783567135, -0.29058116232464937, -0.28657314629258523, -0.2825651302605211, -0.27855711422845697, -0.27454909819639284, -0.2705410821643287, -0.2665330661322646, -0.26252505010020044, -0.2585170340681363, -0.2545090180360722, -0.25050100200400804, -0.2464929859719439, -0.24248496993987978, -0.23847695390781565, -0.23446893787575152, -0.2304609218436875, -0.22645290581162336, -0.22244488977955923, -0.2184368737474951, -0.21442885771543096, -0.21042084168336683, -0.2064128256513027, -0.20240480961923857, -0.19839679358717444, -0.1943887775551103, -0.19038076152304617, -0.18637274549098204, -0.1823647294589179, -0.17835671342685377, -0.17434869739478964, -0.1703406813627255, -0.16633266533066138, -0.16232464929859725, -0.1583166332665331, -0.15430861723446898, -0.15030060120240485, -0.14629258517034072, -0.14228456913827658, -0.13827655310621245, -0.13426853707414832, -0.1302605210420842, -0.12625250501002017, -0.12224448897795603, -0.1182364729458919, -0.11422845691382777, -0.11022044088176364, -0.1062124248496995, -0.10220440881763537, -0.09819639278557124, -0.09418837675350711, -0.09018036072144298, -0.08617234468937884, -0.08216432865731471, -0.07815631262525058, -0.07414829659318645, -0.07014028056112231, -0.06613226452905818, -0.06212424849699405, -0.05811623246492992, -0.054108216432865786, -0.05010020040080165, -0.04609218436873752, -0.04208416833667339, -0.038076152304609256, -0.034068136272545124, -0.030060120240480992, -0.02605210420841686, -0.02204408817635284, -0.018036072144288706, -0.014028056112224574, -0.010020040080160442, -0.006012024048096309, -0.002004008016032177, 0.002004008016031955, 0.006012024048096087, 0.01002004008016022, 0.014028056112224352, 0.018036072144288484, 0.022044088176352616, 0.02605210420841675, 0.03006012024048088, 0.03406813627254501, 0.038076152304609145, 0.04208416833667328, 0.04609218436873741, 0.05010020040080154, 0.054108216432865675, 0.05811623246492981, 0.06212424849699394, 0.06613226452905807, 0.0701402805611222, 0.07414829659318634, 0.07815631262525047, 0.0821643286573146, 0.08617234468937873, 0.09018036072144286, 0.094188376753507, 0.09819639278557113, 0.10220440881763526, 0.1062124248496994, 0.11022044088176353, 0.11422845691382766, 0.11823647294589179, 0.12224448897795592, 0.12625250501002006, 0.13026052104208397, 0.1342685370741481, 0.13827655310621223, 0.14228456913827636, 0.1462925851703405, 0.15030060120240463, 0.15430861723446876, 0.1583166332665329, 0.16232464929859702, 0.16633266533066116, 0.1703406813627253, 0.17434869739478942, 0.17835671342685355, 0.18236472945891768, 0.18637274549098182, 0.19038076152304595, 0.19438877755511008, 0.1983967935871742, 0.20240480961923835, 0.20641282565130248, 0.2104208416833666, 0.21442885771543074, 0.21843687374749488, 0.222444889779559, 0.22645290581162314, 0.23046092184368727, 0.2344689378757514, 0.23847695390781554, 0.24248496993987967, 0.2464929859719438, 0.25050100200400793, 0.25450901803607207, 0.2585170340681362, 0.26252505010020033, 0.26653306613226446, 0.2705410821643286, 0.2745490981963927, 0.27855711422845686, 0.282565130260521, 0.2865731462925851, 0.29058116232464926, 0.2945891783567134, 0.2985971943887775, 0.30260521042084165, 0.3066132264529058, 0.3106212424849699, 0.31462925851703405, 0.3186372745490982, 0.3226452905811623, 0.32665330661322645, 0.3306613226452906, 0.3346693386773545, 0.3386773547094186, 0.34268537074148275, 0.3466933867735469, 0.350701402805611, 0.35470941883767515, 0.3587174348697393, 0.3627254509018034, 0.36673346693386755, 0.3707414829659317, 0.3747494989979958, 0.37875751503005994, 0.3827655310621241, 0.3867735470941882, 0.39078156312625234, 0.3947895791583165, 0.3987975951903806, 0.40280561122244474, 0.40681362725450887, 0.410821643286573, 0.41482965931863713, 0.41883767535070127, 0.4228456913827654, 0.42685370741482953, 0.43086172344689366, 0.4348697394789578, 0.4388777555110219, 0.44288577154308606, 0.4468937875751502, 0.4509018036072143, 0.45490981963927846, 0.4589178356713426, 0.4629258517034067, 0.46693386773547085, 0.470941883767535, 0.4749498997995991, 0.47895791583166325, 0.4829659318637274, 0.4869739478957915, 0.49098196392785565, 0.4949899799599198, 0.4989979959919839, 0.503006012024048, 0.5070140280561122, 0.5110220440881763, 0.5150300601202404, 0.5190380761523046, 0.5230460921843687, 0.5270541082164328, 0.531062124248497, 0.5350701402805611, 0.539078156312625, 0.5430861723446891, 0.5470941883767533, 0.5511022044088174, 0.5551102204408815, 0.5591182364729457, 0.5631262525050098, 0.5671342685370739, 0.5711422845691381, 0.5751503006012022, 0.5791583166332663, 0.5831663326653305, 0.5871743486973946, 0.5911823647294587, 0.5951903807615229, 0.599198396793587, 0.6032064128256511, 0.6072144288577153, 0.6112224448897794, 0.6152304609218435, 0.6192384769539077, 0.6232464929859718, 0.6272545090180359, 0.6312625250501, 0.6352705410821642, 0.6392785571142283, 0.6432865731462925, 0.6472945891783566, 0.6513026052104207, 0.6553106212424848, 0.659318637274549, 0.6633266533066131, 0.6673346693386772, 0.6713426853707414, 0.6753507014028055, 0.6793587174348696, 0.6833667334669338, 0.6873747494989979, 0.691382765531062, 0.6953907815631262, 0.6993987975951903, 0.7034068136272544, 0.7074148296593186, 0.7114228456913827, 0.7154308617234468, 0.719438877755511, 0.7234468937875751, 0.7274549098196392, 0.7314629258517034, 0.7354709418837675, 0.7394789579158316, 0.7434869739478958, 0.7474949899799597, 0.7515030060120238, 0.7555110220440879, 0.7595190380761521, 0.7635270541082162, 0.7675350701402803, 0.7715430861723445, 0.7755511022044086, 0.7795591182364727, 0.7835671342685369, 0.787575150300601, 0.7915831663326651, 0.7955911823647293, 0.7995991983967934, 0.8036072144288575, 0.8076152304609217, 0.8116232464929858, 0.8156312625250499, 0.819639278557114, 0.8236472945891782, 0.8276553106212423, 0.8316633266533064, 0.8356713426853706, 0.8396793587174347, 0.8436873747494988, 0.847695390781563, 0.8517034068136271, 0.8557114228456912, 0.8597194388777554, 0.8637274549098195, 0.8677354709418836, 0.8717434869739478, 0.8757515030060119, 0.879759519038076, 0.8837675350701402, 0.8877755511022043, 0.8917835671342684, 0.8957915831663326, 0.8997995991983967, 0.9038076152304608, 0.907815631262525, 0.9118236472945891, 0.9158316633266532, 0.9198396793587174, 0.9238476953907815, 0.9278557114228456, 0.9318637274549098, 0.9358717434869739, 0.939879759519038, 0.9438877755511021, 0.9478957915831663, 0.9519038076152302, 0.9559118236472943, 0.9599198396793585, 0.9639278557114226, 0.9679358717434867, 0.9719438877755509, 0.975951903807615, 0.9799599198396791, 0.9839679358717432, 0.9879759519038074, 0.9919839679358715, 0.9959919839679356, 1.0], "sigma": [0.1, 0.10180360721442887, 0.10360721442885772, 0.10541082164328658, 0.10721442885771544, 0.10901803607214429, 0.11082164328657315, 0.11262525050100201, 0.11442885771543086, 0.11623246492985972, 0.11803607214428859, 0.11983967935871745, 0.1216432865731463, 0.12344689378757516, 0.12525050100200402, 0.12705410821643287, 0.12885771543086172, 0.1306613226452906, 0.13246492985971944, 0.13426853707414832, 0.13607214428857717, 0.13787575150300602, 0.13967935871743486, 0.14148296593186374, 0.1432865731462926, 0.14509018036072147, 0.14689378757515031, 0.14869739478957916, 0.150501002004008, 0.1523046092184369, 0.15410821643286574, 0.1559118236472946, 0.15771543086172346, 0.1595190380761523, 0.16132264529058116, 0.16312625250501003, 0.16492985971943888, 0.16673346693386776, 0.1685370741482966, 0.17034068136272545, 0.1721442885771543, 0.17394789579158318, 0.17575150300601203, 0.1775551102204409, 0.17935871743486975, 0.1811623246492986, 0.18296593186372745, 0.18476953907815633, 0.18657314629258517, 0.18837675350701405, 0.1901803607214429, 0.19198396793587175, 0.1937875751503006, 0.19559118236472947, 0.19739478957915832, 0.1991983967935872, 0.20100200400801604, 0.2028056112224449, 0.20460921843687374, 0.20641282565130262, 0.20821643286573147, 0.21002004008016034, 0.2118236472945892, 0.21362725450901804, 0.2154308617234469, 0.21723446893787576, 0.2190380761523046, 0.2208416833667335, 0.22264529058116234, 0.22444889779559118, 0.22625250501002006, 0.2280561122244489, 0.22985971943887776, 0.23166332665330663, 0.23346693386773548, 0.23527054108216433, 0.2370741482965932, 0.23887775551102206, 0.2406813627254509, 0.24248496993987978, 0.24428857715430863, 0.24609218436873748, 0.24789579158316635, 0.2496993987975952, 0.251503006012024, 0.2533066132264529, 0.2551102204408818, 0.2569138276553106, 0.2587174348697395, 0.2605210420841684, 0.2623246492985972, 0.26412825651302607, 0.2659318637274549, 0.26773547094188377, 0.2695390781563126, 0.27134268537074147, 0.2731462925851703, 0.2749498997995992, 0.27675350701402807, 0.2785571142284569, 0.2803607214428858, 0.28216432865731467, 0.2839679358717435, 0.28577154308617236, 0.2875751503006012, 0.28937875751503006, 0.2911823647294589, 0.29298597194388776, 0.2947895791583166, 0.2965931863727455, 0.29839679358717436, 0.3002004008016032, 0.3020040080160321, 0.30380761523046096, 0.3056112224448898, 0.30741482965931866, 0.3092184368737475, 0.31102204408817635, 0.3128256513026052, 0.31462925851703405, 0.3164328657314629, 0.3182364729458918, 0.32004008016032065, 0.3218436873747495, 0.3236472945891784, 0.32545090180360725, 0.3272545090180361, 0.32905811623246495, 0.3308617234468938, 0.33266533066132264, 0.3344689378757515, 0.33627254509018034, 0.3380761523046092, 0.3398797595190381, 0.34168336673346694, 0.3434869739478958, 0.3452905811623247, 0.34709418837675354, 0.3488977955911824, 0.35070140280561124, 0.3525050100200401, 0.35430861723446894, 0.3561122244488978, 0.35791583166332663, 0.3597194388777555, 0.36152304609218433, 0.3633266533066133, 0.36513026052104214, 0.366933867735471, 0.36873747494989983, 0.3705410821643287, 0.37234468937875753, 0.3741482965931864, 0.37595190380761523, 0.3777555110220441, 0.3795591182364729, 0.3813627254509018, 0.3831663326653306, 0.3849699398797596, 0.38677354709418843, 0.3885771543086173, 0.3903807615230461, 0.392184368737475, 0.3939879759519038, 0.39579158316633267, 0.3975951903807615, 0.39939879759519037, 0.4012024048096192, 0.40300601202404807, 0.4048096192384769, 0.4066132264529059, 0.4084168336673347, 0.41022044088176357, 0.4120240480961924, 0.41382765531062127, 0.4156312625250501, 0.41743486973947896, 0.4192384769539078, 0.42104208416833666, 0.4228456913827655, 0.42464929859719436, 0.4264529058116232, 0.42825651302605217, 0.430060120240481, 0.43186372745490986, 0.4336673346693387, 0.43547094188376756, 0.4372745490981964, 0.43907815631262526, 0.4408817635270541, 0.44268537074148295, 0.4444889779559118, 0.44629258517034065, 0.4480961923847695, 0.44989979959919846, 0.4517034068136273, 0.45350701402805615, 0.455310621242485, 0.45711422845691385, 0.4589178356713427, 0.46072144288577155, 0.4625250501002004, 0.46432865731462925, 0.4661322645290581, 0.46793587174348694, 0.4697394789579158, 0.47154308617234475, 0.4733466933867736, 0.47515030060120245, 0.4769539078156313, 0.47875751503006014, 0.480561122244489, 0.48236472945891784, 0.4841683366733467, 0.48597194388777554, 0.4877755511022044, 0.48957915831663323, 0.4913827655310621, 0.49318637274549104, 0.4949899799599199, 0.49679358717434874, 0.4985971943887776, 0.5004008016032064, 0.5022044088176353, 0.5040080160320641, 0.505811623246493, 0.5076152304609218, 0.5094188376753507, 0.5112224448897795, 0.5130260521042084, 0.5148296593186373, 0.5166332665330662, 0.518436873747495, 0.5202404809619239, 0.5220440881763527, 0.5238476953907816, 0.5256513026052104, 0.5274549098196393, 0.5292585170340681, 0.531062124248497, 0.5328657314629258, 0.5346693386773547, 0.5364729458917836, 0.5382765531062125, 0.5400801603206413, 0.5418837675350702, 0.543687374749499, 0.5454909819639279, 0.5472945891783567, 0.5490981963927856, 0.5509018036072144, 0.5527054108216433, 0.5545090180360721, 0.556312625250501, 0.5581162324649299, 0.5599198396793588, 0.5617234468937876, 0.5635270541082165, 0.5653306613226453, 0.5671342685370742, 0.568937875751503, 0.5707414829659319, 0.5725450901803607, 0.5743486973947896, 0.5761523046092184, 0.5779559118236474, 0.5797595190380762, 0.5815631262525051, 0.5833667334669339, 0.5851703406813628, 0.5869739478957916, 0.5887775551102205, 0.5905811623246493, 0.5923847695390781, 0.594188376753507, 0.5959919839679358, 0.5977955911823647, 0.5995991983967937, 0.6014028056112224, 0.6032064128256512, 0.6050100200400802, 0.606813627254509, 0.6086172344689379, 0.6104208416833667, 0.6122244488977956, 0.6140280561122244, 0.6158316633266533, 0.6176352705410821, 0.619438877755511, 0.6212424849699398, 0.6230460921843687, 0.6248496993987975, 0.6266533066132265, 0.6284569138276553, 0.6302605210420842, 0.632064128256513, 0.6338677354709419, 0.6356713426853707, 0.6374749498997996, 0.6392785571142284, 0.6410821643286573, 0.6428857715430861, 0.644689378757515, 0.6464929859719438, 0.6482965931863728, 0.6501002004008016, 0.6519038076152305, 0.6537074148296593, 0.6555110220440882, 0.657314629258517, 0.6591182364729459, 0.6609218436873747, 0.6627254509018036, 0.6645290581162324, 0.6663326653306613, 0.6681362725450901, 0.6699398797595191, 0.6717434869739479, 0.6735470941883768, 0.6753507014028056, 0.6771543086172345, 0.6789579158316633, 0.6807615230460922, 0.682565130260521, 0.6843687374749499, 0.6861723446893787, 0.6879759519038076, 0.6897795591182364, 0.6915831663326654, 0.6933867735470942, 0.6951903807615231, 0.6969939879759519, 0.6987975951903808, 0.7006012024048096, 0.7024048096192385, 0.7042084168336673, 0.7060120240480962, 0.707815631262525, 0.7096192384769539, 0.7114228456913827, 0.7132264529058117, 0.7150300601202405, 0.7168336673346694, 0.7186372745490982, 0.720440881763527, 0.7222444889779559, 0.7240480961923847, 0.7258517034068136, 0.7276553106212424, 0.7294589178356713, 0.7312625250501001, 0.733066132264529, 0.734869739478958, 0.7366733466933868, 0.7384769539078156, 0.7402805611222445, 0.7420841683366733, 0.7438877755511022, 0.745691382765531, 0.7474949899799599, 0.7492985971943887, 0.7511022044088176, 0.7529058116232464, 0.7547094188376753, 0.7565130260521042, 0.7583166332665331, 0.7601202404809619, 0.7619238476953908, 0.7637274549098196, 0.7655310621242485, 0.7673346693386773, 0.7691382765531062, 0.770941883767535, 0.7727454909819639, 0.7745490981963927, 0.7763527054108216, 0.7781563126252505, 0.7799599198396794, 0.7817635270541082, 0.7835671342685371, 0.7853707414829659, 0.7871743486973948, 0.7889779559118236, 0.7907815631262525, 0.7925851703406813, 0.7943887775551102, 0.796192384769539, 0.797995991983968, 0.7997995991983968, 0.8016032064128257, 0.8034068136272545, 0.8052104208416834, 0.8070140280561122, 0.8088176352705411, 0.8106212424849699, 0.8124248496993988, 0.8142284569138276, 0.8160320641282565, 0.8178356713426853, 0.8196392785571143, 0.8214428857715431, 0.823246492985972, 0.8250501002004008, 0.8268537074148297, 0.8286573146292585, 0.8304609218436874, 0.8322645290581162, 0.8340681362725451, 0.8358717434869739, 0.8376753507014028, 0.8394789579158316, 0.8412825651302606, 0.8430861723446894, 0.8448897795591183, 0.8466933867735471, 0.848496993987976, 0.8503006012024048, 0.8521042084168337, 0.8539078156312625, 0.8557114228456913, 0.8575150300601202, 0.859318637274549, 0.8611222444889779, 0.8629258517034069, 0.8647294589178357, 0.8665330661322646, 0.8683366733466934, 0.8701402805611222, 0.8719438877755511, 0.87374749498998, 0.8755511022044088, 0.8773547094188376, 0.8791583166332665, 0.8809619238476953, 0.8827655310621242, 0.8845691382765531, 0.886372745490982, 0.8881763527054108, 0.8899799599198397, 0.8917835671342685, 0.8935871743486974, 0.8953907815631262, 0.8971943887775551, 0.8989979959919839, 0.9008016032064128, 0.9026052104208416, 0.9044088176352705, 0.9062124248496994, 0.9080160320641283, 0.9098196392785571, 0.911623246492986, 0.9134268537074148, 0.9152304609218437, 0.9170340681362725, 0.9188376753507014, 0.9206412825651302, 0.9224448897795591, 0.9242484969939879, 0.9260521042084168, 0.9278557114228457, 0.9296593186372746, 0.9314629258517034, 0.9332665330661323, 0.9350701402805611, 0.93687374749499, 0.9386773547094188, 0.9404809619238477, 0.9422845691382765, 0.9440881763527054, 0.9458917835671342, 0.9476953907815631, 0.949498997995992, 0.9513026052104209, 0.9531062124248497, 0.9549098196392786, 0.9567134268537074, 0.9585170340681363, 0.9603206412825651, 0.962124248496994, 0.9639278557114228, 0.9657314629258517, 0.9675350701402805, 0.9693386773547094, 0.9711422845691383, 0.9729458917835672, 0.974749498997996, 0.9765531062124249, 0.9783567134268537, 0.9801603206412826, 0.9819639278557114, 0.9837675350701403, 0.9855711422845691, 0.987374749498998, 0.9891783567134268, 0.9909819639278556, 0.9927855711422846, 0.9945891783567135, 0.9963927855711423, 0.9981963927855712, 1.0], "expected": [0.001168502750680849, 0.0012110332643310775, 0.001254324005633445, 0.0012983749745879517, 0.0013431861711945977, 0.0013887575954533824, 0.0014350892473643066, 0.00148218112692737, 0.0015300332341425722, 0.0015786455690099139, 0.0016280181315293948, 0.0016781509217010146, 0.0017290439395247733, 0.0017806971850006716, 0.0018331106581287089, 0.0018862843589088848, 0.0019402182873412002, 0.0019949124434256553, 0.002050366827162249, 0.002106581438550982, 0.002163556277591854, 0.002221291344284865, 0.0022797866386300154, 0.0023390421606273052, 0.0023990579102767338, 0.002459833887578302, 0.0025213700925320087, 0.0025836665251378543, 0.0026467231853958394, 0.002710540073305964, 0.0027751171888682267, 0.0028404545320826306, 0.0029065521029491715, 0.0029734099014678524, 0.003041027927638672, 0.003109406181461632, 0.0031785446629367295, 0.0032484433720639675, 0.003319102308843344, 0.003390521473274859, 0.003462700865358514, 0.0035356404850943085, 0.0036093403324822413, 0.003683800407522314, 0.0037590207102145253, 0.003835001240558875, 0.003911741998555365, 0.003989242984203994, 0.004067504197504761, 0.004146525638457669, 0.004226307307062715, 0.004306849203319901, 0.0043881513272292245, 0.004470213678790689, 0.004553036258004291, 0.0046366190648700345, 0.004720962099387914, 0.004806065361557934, 0.004891928851380093, 0.004978552568854392, 0.00506593651398083, 0.005154080686759407, 0.005242985087190123, 0.005332649715272977, 0.005423074571007971, 0.005514259654395105, 0.005606204965434377, 0.0056989105041257895, 0.00579237627046934, 0.005886602264465029, 0.005981588486112859, 0.006077334935412826, 0.006173841612364933, 0.006271108516969181, 0.006369135649225565, 0.006467923009134091, 0.006567470596694755, 0.006667778411907557, 0.0067688464547724985, 0.00687067472528958, 0.006973263223458801, 0.00707661194928016, 0.00718072090275366, 0.0072855900838792965, 0.0073912194926570715, 0.00749760912908699, 0.007604758993169044, 0.007712669084903238, 0.007821339404289574, 0.007930769951328047, 0.008040960726018658, 0.008151911728361409, 0.008263622958356297, 0.008376094416003326, 0.008489326101302494, 0.008603318014253802, 0.008718070154857246, 0.008833582523112836, 0.00894985511902056, 0.009066887942580424, 0.00918468099379243, 0.009303234272656571, 0.009422547779172851, 0.00954262151334127, 0.00966345547516183, 0.009785049664634528, 0.009907404081759367, 0.010030518726536342, 0.010154393598965458, 0.010279028699046717, 0.010404424026780112, 0.010530579582165642, 0.010657495365203318, 0.01078517137589313, 0.01091360761423508, 0.01104280408022917, 0.0111727607738754, 0.011303477695173767, 0.011434954844124273, 0.01156719222072692, 0.011700189824981706, 0.011833947656888635, 0.011968465716447696, 0.0121037440036589, 0.012239782518522245, 0.012376581261037726, 0.012514140231205347, 0.012652459429025105, 0.012791538854497004, 0.01293137850762104, 0.013071978388397217, 0.013213338496825534, 0.01335545883290599, 0.013498339396638586, 0.013641980188023319, 0.013786381207060192, 0.013931542453749206, 0.014077463928090358, 0.014224145630083647, 0.014371587559729077, 0.014519789717026643, 0.014668752101976351, 0.014818474714578197, 0.014968957554832182, 0.015120200622738306, 0.01527220391829657, 0.015424967441506983, 0.015578491192369523, 0.015732775170884204, 0.015887819377051027, 0.016043623810869982, 0.01620018847234108, 0.01635751336146432, 0.016515598478239697, 0.016674443822667213, 0.016834049394746867, 0.01699441519447866, 0.017155541221862594, 0.017317427476898677, 0.017480073959586888, 0.017643480669927238, 0.017807647607919728, 0.017972574773564357, 0.018138262166861124, 0.01830470978781003, 0.018471917636411078, 0.018639885712664263, 0.018808614016569587, 0.018978102548127054, 0.019148351307336654, 0.019319360294198406, 0.01949112950871229, 0.019663658950878307, 0.019836948620696467, 0.020010998518166765, 0.020185808643289206, 0.02036137899606378, 0.020537709576490495, 0.02071480038456935, 0.020892651420300345, 0.021071262683683478, 0.02125063417471875, 0.021430765893406173, 0.021611657839745724, 0.021793310013737414, 0.021975722415381243, 0.02215889504467721, 0.022342827901625315, 0.022527520986225565, 0.02271297429847795, 0.022899187838382472, 0.023086161605939137, 0.02327389560114794, 0.023462389824008882, 0.023651644274521974, 0.023841658952687195, 0.024032433858504555, 0.02422396899197405, 0.02441626435309569, 0.02460931994186947, 0.024803135758295385, 0.024997711802373437, 0.025193048074103632, 0.025389144573485966, 0.02558600130052044, 0.025783618255207048, 0.025981995437545813, 0.026181132847536703, 0.02638103048517973, 0.026581688350474898, 0.026783106443422206, 0.026985284764021653, 0.02718822331227324, 0.027391922088176965, 0.02759638109173283, 0.027801600322940833, 0.028007579781800972, 0.028214319468313254, 0.02842181938247769, 0.028630079524294246, 0.028839099893762946, 0.029048880490883784, 0.029259421315656762, 0.029470722368081875, 0.02968278364815913, 0.029895605155888526, 0.03010918689127006, 0.03032352885430373, 0.030538631044989543, 0.030754493463327495, 0.030971116109317597, 0.031188498982959827, 0.03140664208425419, 0.0316255454132007, 0.031845208969799345, 0.03206563275405013, 0.03228681676595306, 0.03250876100550812, 0.032731465472715326, 0.03295493016757467, 0.03317915509008615, 0.03340414024024976, 0.03362988561806555, 0.033856391223533434, 0.03408365705665348, 0.034311683117425655, 0.03454046940584997, 0.034770015921926425, 0.035000322665655025, 0.03523138963703576, 0.03546321683606862, 0.035695804262753636, 0.035929151917090785, 0.036163259799080076, 0.036398127908721524, 0.036633756246015094, 0.0368701448109608, 0.03710729360355864, 0.03734520262380863, 0.03758387187171076, 0.03782330134726502, 0.038063491050471424, 0.038304440981329964, 0.03854615113984065, 0.03878862152600347, 0.03903185213981844, 0.03927584298128554, 0.03952059405040478, 0.03976610534717616, 0.04001237687159967, 0.04025940862367533, 0.040507200603403126, 0.04075575281078305, 0.041005065245815125, 0.041255137908499336, 0.04150597079883569, 0.041757563916824184, 0.04200991726246483, 0.04226303083575758, 0.042516904636702484, 0.04277153866529954, 0.04302693292154873, 0.04328308740545006, 0.043540002117003526, 0.04379767705620913, 0.04405611222306687, 0.044315307617576745, 0.04457526323973877, 0.044835979089552926, 0.045097455167019226, 0.04535969147213767, 0.04562268800490824, 0.04588644476533098, 0.04615096175340583, 0.04641623896913282, 0.04668227641251196, 0.04694907408354323, 0.04721663198222664, 0.0474849501085622, 0.04775402846254989, 0.04802386704418972, 0.048294465853481676, 0.04856582489042579, 0.04883794415502204, 0.049110823647270443, 0.049384463367170964, 0.049658863314723634, 0.04993402348992844, 0.05020994389278537, 0.05048662452329445, 0.05076406538145568, 0.05104226646726904, 0.05132122778073454, 0.05160094932185218, 0.05188143109062195, 0.052162673087043865, 0.05244467531111794, 0.05272743776284413, 0.05301096044222247, 0.053295243349252945, 0.053580286483935556, 0.05386608984627031, 0.05415265343625719, 0.05443997725389622, 0.05472806129918739, 0.0550169055721307, 0.05530651007272615, 0.055596874800973736, 0.05588799975687348, 0.056179884940425334, 0.05647253035162934, 0.05676593599048548, 0.05706010185699376, 0.057355027951154186, 0.05765071427296675, 0.05794716082243145, 0.05824436759954829, 0.05854233460431726, 0.05884106183673837, 0.05914054929681163, 0.059440796984537046, 0.05974180489991458, 0.060043573042944255, 0.06034610141362607, 0.060649390011960014, 0.06095343883794611, 0.061258247891584336, 0.06156381717287471, 0.061870146681817215, 0.062177236418411864, 0.06248508638265865, 0.06279369657455758, 0.06310306699410866, 0.06341319764131186, 0.0637240885161672, 0.06403573961867469, 0.06434815094883431, 0.06466132250664607, 0.06497525429210997, 0.065289946305226, 0.06560539854599418, 0.06592161101441449, 0.06623858371048695, 0.06655631663421155, 0.0668748097855883, 0.06719406316461718, 0.06751407677129818, 0.06783485060563132, 0.06815638466761663, 0.06847867895725405, 0.06880173347454363, 0.06912554821948533, 0.06945012319207919, 0.06977545839232516, 0.07010155382022329, 0.07042840947577356, 0.07075602535897597, 0.07108440146983053, 0.0714135378083372, 0.07174343437449603, 0.07207409116830697, 0.07240550818977008, 0.07273768543888531, 0.0730706229156527, 0.07340432062007221, 0.07373877855214388, 0.07407399671186767, 0.07440997509924362, 0.07474671371427169, 0.0750842125569519, 0.07542247162728426, 0.07576149092526875, 0.07610127045090538, 0.07644181020419415, 0.07678311018513506, 0.0771251703937281, 0.07746799082997329, 0.07781157149387061, 0.07815591238542008, 0.0785010135046217, 0.07884687485147544, 0.07919349642598134, 0.07954087822813934, 0.0798890202579495, 0.0802379225154118, 0.08058758500052625, 0.08093800771329282, 0.08128919065371154, 0.0816411338217824, 0.08199383721750539, 0.08234730084088052, 0.08270152469190782, 0.08305650877058723, 0.08341225307691878, 0.08376875761090248, 0.0841260223725383, 0.08448404736182627, 0.08484283257876638, 0.08520237802335862, 0.085562683695603, 0.08592374959549953, 0.08628557572304821, 0.086648162078249, 0.08701150866110197, 0.08737561547160705, 0.08774048250976427, 0.08810610977557363, 0.08847249726903514, 0.08883964499014878, 0.08920755293891455, 0.08957622111533248, 0.08994564951940251, 0.09031583815112472, 0.09068678701049905, 0.09105849609752552, 0.09143096541220416, 0.09180419495453492, 0.0921781847245178, 0.09255293472215283, 0.09292844494744, 0.09330471540037931, 0.09368174608097075, 0.09405953698921435, 0.09443808812511006, 0.09481739948865793, 0.09519747107985793, 0.09557830289871007, 0.09595989494521438, 0.0963422472193708, 0.09672535972117936, 0.09710923245064007, 0.09749386540775291, 0.09787925859251789, 0.098265412004935, 0.09865232564500426, 0.09903999951272564, 0.09942843360809918, 0.09981762793112486, 0.10020758248180267, 0.10059829726013265, 0.10098977226611473, 0.10138200749974896, 0.10177500296103534, 0.10216875864997384, 0.10256327456656449, 0.10295855071080728, 0.1033545870827022, 0.10375138368224926, 0.10414894050944846, 0.1045472575642998, 0.1049463348468033, 0.10534617235695894, 0.1057467700947667, 0.10614812806022661, 0.10655024625333863, 0.10695312467410281, 0.10735676332251913, 0.10776116219858758, 0.10816632130230819, 0.10857224063368093, 0.1089789201927058, 0.10938635997938281, 0.10979455999371195, 0.11020352023569327, 0.1106132407053267, 0.11102372140261227, 0.11143496232754999, 0.11184696348013984, 0.11225972486038183, 0.11267324646827594, 0.1130875283038222, 0.1135025703670206, 0.11391837265787115, 0.11433493517637383, 0.11475225792252866, 0.11517034089633565, 0.11558918409779474, 0.11600878752690598, 0.11642915118366935, 0.11685027506808487]} diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.js b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.js new file mode 100644 index 000000000000..7f61dade8858 --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.js @@ -0,0 +1,145 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var tape = require( 'tape' ); +var isAlmostSameValue = require( '@stdlib/assert/is-almost-same-value' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var PINF = require( '@stdlib/constants/float64/pinf' ); +var NINF = require( '@stdlib/constants/float64/ninf' ); +var variance = require( './../lib' ); + + +// FIXTURES // + +var smallMuSmallSigma = require( './fixtures/python/small_mu_small_sigma.json' ); +var smallMuLargeSigma = require( './fixtures/python/small_mu_large_sigma.json' ); +var largeMuSmallSigma = require( './fixtures/python/large_mu_small_sigma.json' ); +var largeMuLargeSigma = require( './fixtures/python/large_mu_large_sigma.json' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof variance, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'if provided `NaN` for any parameter, the function returns `NaN`', function test( t ) { + var y = variance( NaN, 1.0 ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + y = variance( 1.0, NaN ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'if provided a nonpositive `sigma`, the function returns `NaN`', function test( t ) { + var y; + + y = variance( 2.0, 0.0 ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + + y = variance( 2.0, -1.0 ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + + y = variance( 1.0, NINF ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + + y = variance( PINF, NINF ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + + y = variance( NINF, NINF ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + + y = variance( NaN, NINF ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + + t.end(); +}); + +tape( 'the function returns the variance of an anglit distribution for small `mu` and small `sigma`', function test( t ) { + var expected; + var sigma; + var mu; + var y; + var i; + + expected = smallMuSmallSigma.expected; + mu = smallMuSmallSigma.mu; + sigma = smallMuSmallSigma.sigma; + for ( i = 0; i < expected.length; i++ ) { + y = variance( mu[i], sigma[i] ); + t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function returns the variance of an anglit distribution for small `mu` and large `sigma`', function test( t ) { + var expected; + var sigma; + var mu; + var y; + var i; + + expected = smallMuLargeSigma.expected; + mu = smallMuLargeSigma.mu; + sigma = smallMuLargeSigma.sigma; + for ( i = 0; i < expected.length; i++ ) { + y = variance( mu[i], sigma[i] ); + t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function returns the variance of an anglit distribution for large `mu` and small `sigma`', function test( t ) { + var expected; + var sigma; + var mu; + var y; + var i; + + expected = largeMuSmallSigma.expected; + mu = largeMuSmallSigma.mu; + sigma = largeMuSmallSigma.sigma; + for ( i = 0; i < expected.length; i++ ) { + y = variance( mu[i], sigma[i] ); + t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function returns the variance of an anglit distribution for large `mu` and large `sigma`', function test( t ) { + var expected; + var sigma; + var mu; + var y; + var i; + + expected = largeMuLargeSigma.expected; + mu = largeMuLargeSigma.mu; + sigma = largeMuLargeSigma.sigma; + for ( i = 0; i < expected.length; i++ ) { + y = variance( mu[i], sigma[i] ); + t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); + } + t.end(); +}); diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.native.js b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.native.js new file mode 100644 index 000000000000..5a3963c2ccab --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.native.js @@ -0,0 +1,154 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var tape = require( 'tape' ); +var tryRequire = require( '@stdlib/utils/try-require' ); +var isAlmostSameValue = require( '@stdlib/assert/is-almost-same-value' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var PINF = require( '@stdlib/constants/float64/pinf' ); +var NINF = require( '@stdlib/constants/float64/ninf' ); + + +// VARIABLES // + +var variance = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( variance instanceof Error ) +}; + + +// FIXTURES // + +var smallMuSmallSigma = require( './fixtures/python/small_mu_small_sigma.json' ); +var smallMuLargeSigma = require( './fixtures/python/small_mu_large_sigma.json' ); +var largeMuSmallSigma = require( './fixtures/python/large_mu_small_sigma.json' ); +var largeMuLargeSigma = require( './fixtures/python/large_mu_large_sigma.json' ); + + +// TESTS // + +tape( 'main export is a function', opts, function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof variance, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'if provided `NaN` for any parameter, the function returns `NaN`', opts, function test( t ) { + var y = variance( NaN, 1.0 ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + y = variance( 1.0, NaN ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'if provided a nonpositive `sigma`, the function returns `NaN`', opts, function test( t ) { + var y; + + y = variance( 2.0, 0.0 ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + + y = variance( 2.0, -1.0 ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + + y = variance( 1.0, NINF ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + + y = variance( PINF, NINF ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + + y = variance( NINF, NINF ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + + y = variance( NaN, NINF ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); + + t.end(); +}); + +tape( 'the function returns the variance of an anglit distribution for small `mu` and small `sigma`', opts, function test( t ) { + var expected; + var sigma; + var mu; + var y; + var i; + + expected = smallMuSmallSigma.expected; + mu = smallMuSmallSigma.mu; + sigma = smallMuSmallSigma.sigma; + for ( i = 0; i < expected.length; i++ ) { + y = variance( mu[i], sigma[i] ); + t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function returns the variance of an anglit distribution for small `mu` and large `sigma`', opts, function test( t ) { + var expected; + var sigma; + var mu; + var y; + var i; + + expected = smallMuLargeSigma.expected; + mu = smallMuLargeSigma.mu; + sigma = smallMuLargeSigma.sigma; + for ( i = 0; i < expected.length; i++ ) { + y = variance( mu[i], sigma[i] ); + t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function returns the variance of an anglit distribution for large `mu` and small `sigma`', opts, function test( t ) { + var expected; + var sigma; + var mu; + var y; + var i; + + expected = largeMuSmallSigma.expected; + mu = largeMuSmallSigma.mu; + sigma = largeMuSmallSigma.sigma; + for ( i = 0; i < expected.length; i++ ) { + y = variance( mu[i], sigma[i] ); + t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function returns the variance of an anglit distribution for large `mu` and large `sigma`', opts, function test( t ) { + var expected; + var sigma; + var mu; + var y; + var i; + + expected = largeMuLargeSigma.expected; + mu = largeMuLargeSigma.mu; + sigma = largeMuLargeSigma.sigma; + for ( i = 0; i < expected.length; i++ ) { + y = variance( mu[i], sigma[i] ); + t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); + } + t.end(); +}); From 6b97e552e82bcc71e9a002f795d7edb0a2dc1848 Mon Sep 17 00:00:00 2001 From: Om-A-osc Date: Tue, 14 Apr 2026 16:51:41 +0530 Subject: [PATCH 2/5] chore: minor cleanup --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: passed - task: lint_c_benchmarks status: passed - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed --- --- .../anglit/variance/benchmark/c/benchmark.c | 40 ++++++++++++++++++- .../dists/anglit/variance/docs/types/test.ts | 9 +++++ .../anglit/variance/examples/c/example.c | 2 +- .../base/dists/anglit/variance/lib/index.js | 4 +- 4 files changed, 50 insertions(+), 5 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/c/benchmark.c index ed66653a0604..513cf757e201 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/c/benchmark.c +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/benchmark/c/benchmark.c @@ -20,6 +20,7 @@ #include "stdlib/constants/float64/eps.h" #include #include +#include #include #include @@ -27,10 +28,19 @@ #define ITERATIONS 1000000 #define REPEATS 3 +/** +* Prints the TAP version. +*/ static void print_version( void ) { printf( "TAP version 13\n" ); } +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ static void print_summary( int total, int passing ) { printf( "#\n" ); printf( "1..%d\n", total ); @@ -40,6 +50,11 @@ static void print_summary( int total, int passing ) { printf( "# ok\n" ); } +/** +* Prints benchmarks results. +* +* @param elapsed elapsed time in seconds +*/ static void print_results( double elapsed ) { double rate = (double)ITERATIONS / elapsed; printf( " ---\n" ); @@ -49,21 +64,38 @@ static void print_results( double elapsed ) { printf( " ...\n" ); } +/** +* Returns a clock time. +* +* @return clock time +*/ static double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; } +/** +* Generates a random number on the interval [min,max). +* +* @param min minimum value (inclusive) +* @param max maximum value (exclusive) +* @return random number +*/ static double random_uniform( const double min, const double max ) { double v = (double)rand() / ( (double)RAND_MAX + 1.0 ); return min + ( v*(max-min) ); } +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ static double benchmark( void ) { - double elapsed; - double mu[ 100 ]; double sigma[ 100 ]; + double mu[ 100 ]; + double elapsed; double y; double t; int i; @@ -88,10 +120,14 @@ static double benchmark( void ) { return elapsed; } +/** +* Main execution sequence. +*/ int main( void ) { double elapsed; int i; + // Use the current time to seed the random number generator: srand( time( NULL ) ); print_version(); diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/types/test.ts b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/types/test.ts index a1a9c0f0ecf2..9e097321a57d 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/types/test.ts +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/types/test.ts @@ -21,10 +21,12 @@ import variance = require( './index' ); // TESTS // +// The function returns a number... { variance( 0, 1 ); // $ExpectType number } +// The compiler throws an error if the function is provided values other than two numbers... { variance( true, 1 ); // $ExpectError variance( false, 1 ); // $ExpectError @@ -39,8 +41,15 @@ import variance = require( './index' ); variance( 1, [] ); // $ExpectError variance( 1, {} ); // $ExpectError variance( 1, ( x: number ): number => x ); // $ExpectError + + variance( [], true ); // $ExpectError + variance( {}, false ); // $ExpectError + variance( false, '5' ); // $ExpectError + variance( {}, [] ); // $ExpectError + variance( '5', ( x: number ): number => x ); // $ExpectError } +// The compiler throws an error if the function is provided insufficient arguments... { variance(); // $ExpectError variance( 1 ); // $ExpectError diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/c/example.c b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/c/example.c index 774e63673306..d912ab2a309a 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/c/example.c +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/examples/c/example.c @@ -26,8 +26,8 @@ static double random_uniform( const double min, const double max ) { } int main( void ) { - double mu; double sigma; + double mu; double y; int i; diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/lib/index.js b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/lib/index.js index 79264be013e0..f9977487f190 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/lib/index.js +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/lib/index.js @@ -35,9 +35,9 @@ // MODULES // -var variance = require( './main.js' ); +var main = require( './main.js' ); // EXPORTS // -module.exports = variance; +module.exports = main; From 709478fcc03c45275c1de87e3e0fb0bf26dad96a Mon Sep 17 00:00:00 2001 From: Om-A-osc Date: Fri, 17 Apr 2026 01:20:54 +0530 Subject: [PATCH 3/5] test: simplifying tests --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: passed - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../variance/test/fixtures/python/data.json | 1 + .../fixtures/python/large_mu_large_sigma.json | 1 - .../fixtures/python/large_mu_small_sigma.json | 1 - .../variance/test/fixtures/python/runner.py | 48 ++++++++----------- .../fixtures/python/small_mu_large_sigma.json | 1 - .../fixtures/python/small_mu_small_sigma.json | 1 - 6 files changed, 20 insertions(+), 33 deletions(-) create mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/data.json delete mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_large_sigma.json delete mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_small_sigma.json delete mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_large_sigma.json delete mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_small_sigma.json diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/data.json b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/data.json new file mode 100644 index 000000000000..a7780d62313d --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/data.json @@ -0,0 +1 @@ +{"mu": [-2.5083159374388, 0.3883749280424684, 1.4156941195302934, -4.641603274158308, 3.089182924665323, -1.7593624122864937, -3.4177572938513, -0.7738164986644023, -0.5630602939754521, -1.9768956792911627, -1.1957659026646916, -0.5363886417696584, 0.048342467267952216, 0.15600790679055532, -4.117094084058652, -4.437836223456907, -1.7324434221347906, -4.0026385652253325, -2.672084350468972, -3.6855879510678924, 0.5414326469131412, -1.7842958976859356, -3.4621261687437066, 2.520705399113469, 3.3263160725582637, -3.679227551239348, -2.785337570004782, 0.1876746939265601, 0.8708601467342145, 1.6902374704600023, -1.9381096345442606, -3.400003011360603, 1.3089395358658447, 4.336396429240162, 2.9576454561101526, -3.563708841231741, 2.1162257218234064, 4.14687223984687, -0.2526709784066439, 2.493598522855618, 3.357904968356845, 2.6849337514383382, 0.6924119772617878, 0.7536932928218878, 4.267721927728994, -2.6015681734396123, 0.979123036364423, 3.5451174240346024, 3.202919196860945, -3.1974572870220785, -0.648653356004826, -4.775592174359355, 3.348494843297466, -3.160738359628845, 0.17038077894723092, 1.0766195742822937, -2.0801862986418715, -0.29405435825659687, 1.2284734139082643, 3.5569218004291923, 1.0726422285403805, -3.3509545064553214, -2.79635330873694, 0.27156916602160575, -2.3326140687425267, 0.4167183058275761, 2.747318705002348, 3.9474708356531494, 4.397580497303448, -1.2245531962542557, 1.571840970874975, 4.800507379122877, 3.4239187184638773, -0.6791666802663778, 0.6074352669975216, 0.995928693843096, -4.666828447995007, -2.4618792245154166, -1.017359051250728, 0.8588110443747894, -2.909731470370389, -0.4376701646558363, -0.7126911328783372, -4.014787243184176, 4.77599791127451, 4.767254510624317, -4.324181027414749, -4.360937338296659, 0.22227688872439622, -0.7490226953726307, 4.809497319397941, -1.9560217935150872, -3.407513126215278, -3.575685376420351, 2.9150632454141876, -0.22146164753574116, -2.756761560288373, 4.03864950517046, -2.4858548296482486, -2.6247367370034844, 2.3578694213082034, 2.5570008536118927, 4.094116134011253, 0.5186840094369005, 2.570368196911242, -4.852791131104555, 0.1565189336715358, -2.127491606445248, 2.4722166827745253, 3.5719774737658163, -3.3609298055960957, 1.8798040658513564, -3.743954709665376, 2.1909654700431114, 3.9398962225557987, 1.106591657596545, 2.7178826297486083, 3.6682827673901635, 0.22590501367211502, -4.122000844477594, -3.968967260097563, -1.3906931372699418, -1.2208154831088214, 2.3284643314630307, -3.864651628582876, 0.5604075780738151, -3.9679929677597423, -3.3346996021431363, -1.1531246473291978, 4.835458727571432, 1.4381010964574443, -4.274151932225603, -1.7168803921854279, -0.5737244148401768, 0.7237247651363106, -0.566799724860207, 0.005327514445784054, -0.5790425636392129, 1.2295750102004313, -2.0003384297569005, -3.5717789311306527, -4.639259863552034, 4.528449874305924, -1.4137459432547415, -0.2786777526137554, -2.493745702206306, 1.0471713101969566, -2.808938078475242, -0.0866073772959206, -0.4326758244372977, -0.7781147869114058, -0.2597189550362886, -0.0767272509741499, -1.3002705908176337, -2.1050828526771213, 3.003655891496349, 2.4730581714981508, -0.10832633130373726, 0.6944494402439538, -3.1062071256449633, -4.208705656381731, 4.809074404143994, 4.726061367766917, -2.1413626261522567, -0.5886014430988649, -3.0719993440703943, 2.2981422361680695, 2.689831053069751, -4.495940721273995, -3.590428642561764, -0.36787213508511485, 1.3969608985357551, 4.557701822867266, -0.701041300701811, 0.352736110039209, 0.2329421427489411, 4.372630627537989, 4.655449894427093, 3.812186406866191, -1.4704002646600989, 2.9170312185845884, 1.8263749622459144, -1.435242289282864, 2.3899332715613797, -0.10096893414365038, -1.5865113271701747, 2.95032865030306, 0.4695062807323822, -2.8832571360310277, 4.914894987076261, 2.8492996283176266, -2.8754550233588496, -3.716617984965681, -3.5711298042855786, 1.1145749805624305, -3.5078159993160583, 1.8262246311509465, -0.08926895335655516, -3.841342742850827, 1.7464482593260442, 2.723994095716316, -1.4212609133006238, 0.6083758798603087, -0.12976532993411283, -0.32270525129119854, -0.06360702275384078, -3.201362500474888, 4.977734712325683, 0.962130834222056, -3.6371928832694533, 0.2463931344757313, -1.3430215904338674, -0.7080926782345189, -0.24373857524538156, 1.285154705473074, 4.733378071214355, 0.046131289617722615, 4.644962312309014, 0.8296959755570708, -1.2709774310668376, 3.8548003431936095, 4.491474992461901, -1.7655867806926073, 0.40445802625022154, -3.554914568370775, 4.365487727263995, 0.7065240082546804, -4.778317493053764, 4.210025326444679, -4.861238044233006, 4.626264355855859, -1.3964544548996791, 1.1734093140303319, -3.686172485663434, -0.5378774435802853, 2.958310391220172, 2.441525512134639, -2.2631739920451555, 4.425059521205677, -2.0307178907272783, 3.9081982903896026, -4.10243289890328, 2.9625619975046718, 2.6536594011637487, 4.860921918536992, 4.701394750920377, -2.8216362430376316, 4.20870313891337, 4.6328299810821605, -1.3048034337544587, 4.336398930875738, 3.2701518891179777, 2.7473057953768567, -2.310590626790211, 3.746864057731152, 4.709199928127193, 0.04457752064345044, 2.812558148955179, -4.369056480547824, 1.8475867256953258, 3.8839738760111118, -3.13631200164737, 1.0949960241701282, 3.8344317554508702, -4.8617431017023796, 1.4492927896990402, -0.6049834645136096, 3.2064690157369196, 0.34362991579202706, 4.695993356606044, 0.39209053732105126, -2.901069051647264, -1.1921464110352078, 1.131816473844589, 2.3357804187041555, 2.740592102231031, -3.651433027354676, -2.47803834561131, -1.2737755943534834, -1.064492136153068, -4.635577725172494, -0.8654711108958004, -1.3896061591630726, -4.405973670653021, 4.031972437699643, -2.4720557397427125, -1.7747503757371907, -0.887570757088989, -1.6133826215624039, 0.07300656130199368, 2.585250814531973, -4.229883834521041, 4.764882617035935, 4.392952455870386, 1.1930358829483465, -1.2010814452712015, -4.748341034619111, -2.6940963998109635, 4.351271390852268, 3.8702308157052716, 2.2892187248568474, 1.395990539605135, -0.2478415554646407, -0.32064108721404505, -2.9425968081020857, -2.6643020880172874, -2.7113253697705586, -4.5361376046705, -1.9559938134442891, 4.687188786935664, 4.016146388897187, -1.7450579014973044, 1.0923201935822169, -3.3225196183314107, 1.3571403714885077, 0.5942622249244476, 3.0381221672565637, 1.6563360097101851, -3.1521956290922692, -0.294647009260558, 0.6371819953390725, -3.682066771223619, 0.08293665642698489, 2.3066103490864496, -2.1980639561773794, 3.209463930613719, 1.0844294627269022, -0.7700036663269829, 4.4957084723258784, -1.91633863206396, 0.5545589302843563, -1.8231188744260383, -4.933738479889497, -1.9522232103679746, 2.2208255832775876, -2.665446344519753, 2.174152163215121, -0.8650558152821475, -1.7017540938305986, -4.138571266376508, 0.40811183674577034, -3.255739343588804, -3.3437832248771526, -4.070866540886736, -2.3590322494221647, -1.20544011311152, -0.30761565639370936, 4.678754622523792, 0.970208188196704, -1.756866500792098, -3.918400089167413, -4.175872843839105, 3.4819995455364285, -4.801011723513766, -1.9470368484731337, -1.3362063655937897, -3.664842850201586, -0.8510125697849222, 3.718749524130649, 4.020664753519865, 2.336483122765954, -3.3229260907960056, 4.968453253784874, -1.64354602516823, 1.159612309785282, 2.8624844205398148, -0.3147330078682913, 0.8711600621516657, 4.090341508106777, -1.1443905525074314, 2.9452001437698705, -1.368511918445432, -3.8961714897626765, 4.557318689777073, 3.888088559846155, -0.17251588165532272, -2.433797282691809, -0.7928345993408028, -1.5983831042728989, -3.005326436443073, -0.6783956012765788, -2.3157294331328093, -4.737593059984557, 3.5232235473295663, -3.4054707643210502, 2.930625444113919, -1.0360698035294158, -0.42146142359897887, 1.1021977771364195, 4.106654937197785, -4.9466090218460534, 3.131834460062775, 4.323835712400955, 0.48000590732430215, -4.681086636555293, 0.6296301958011359, 2.7073035302189696, 3.8336676577690056, 4.484169169247346, 4.2828047324371745, 2.4617185946792297, -0.7070689688259959, -2.6287979741457246, -0.45746113653270104, 4.5344549426580745, 3.743543375602364, 0.34287000856055183, 4.080004208034945, -2.0848281092703393, 3.133847841459815, 0.815292548736533, 3.612532430910619, 4.626631074463251, -2.888911979102047, -3.457702644276097, 3.614333476873579, -1.5305070868959039, 2.5225847093182887, 0.5628847456214645, 4.414833966725233, 2.102797387985028, -3.9665464706300355, -1.8350278604237245, -4.483829288615055, -4.728969405714556, -0.7558359361169762, 2.7748815137490688, 0.6316595737318842, -1.7020708745125712, -1.9541338397294172, 4.821898469962541, -0.4326661881325453, 2.3896214191112284, 1.9043610533444202, -2.8820724514468763, 0.5107266030024533, -3.3630671616870544, -0.14675660612782782, -2.7313959716691647, -4.99840606388028, 4.861369873065259, 3.052361532839317, -3.7347439358203696, 3.6792112883356705, 3.680377710808486, 1.9161198659983478, -0.0919465499894132, -3.291827453168934, 1.8464545183810692, 2.0171226924892247, -3.0597318262760007, 4.062076334406932, -4.823573089971596, -1.0819986661871441, -3.4690954275755725, 3.8821490294404164, 4.613380008109413, 3.576060958175697, 0.38808842547844336, -3.3429474585450283, -4.02950073251536, -1.7135920046000566, 3.3611478350914012, -1.7678929294663606, -4.798527077014935, 2.8915363178531788, -1.0245572596466856, -0.9166741209235241, -1.8667784594030024, -4.98946643071037, -3.0390760835516284, 2.144053725592152, 4.88292147185064, -4.923792497704048, -0.3139750388465785, -4.793493915607552, -3.063549217104452, -3.0335512688632713, -2.4773980022090902, 1.2616754511693635, -1.4663604853051004, 0.10732639711396175, -2.118679034277969, 3.8941992955432863, 4.552702666915621, 1.0237378402315143, -4.3277521066965665, 3.7963864611030473, 2.307229418913784, 3.0726995991615382, -3.1941198889598543, 4.014028023585096, 0.9747175721526657, -4.086091029791432, 0.46729299128661417, -1.8999717315422346, -2.8008831184063587, 1.4139162597512742, -2.813710149983989, 4.366050606350676, -2.204208282409815, -4.1246526586721055, -1.4332919126564345, -0.8113636928726198, -4.50652142182623, 1.5438234047417243, -3.9834972505290365, -3.5575744842156922, 3.6676072644413225, 0.18499626233915478, -2.4376815467502446, -3.263852960799647, 4.205165458499485, 1.360152672994591, -3.2352725813994567, -0.1962551686926206, -4.006339294421056, -3.229323378854242, 4.88101725241712, -3.313880348363416, 4.290465120067134, 4.699378113154504, -3.0926277709409753, 3.854771278357079, 1.3557246783906196, -2.3788034996100373, 3.9346008804755055, 2.4919049704316745, -2.959315799341393, -2.262676205523885, -0.032872516501835314, -4.3227195206155775, -3.5973893828036783, 1.1514468299714729, 3.186451018681531, 0.5626780780059191, 0.44778253521049294, -1.5944698950180558, -1.7930820099925437, -4.909300406880192, -0.22687870507681218, 3.9377635696780793, -0.012882938749461559, 0.8313730389756468, -2.151729286836903, 1.2277525186713758, -0.4341081248709955, 0.5175137156505887, -1.0112350524324079, -0.8032761884040998, 2.300795114523547, 1.9383198659822458, 4.674553494673564, 0.3449162678463944, 1.3456399481310202, 0.39423368246535695, 2.3336117934806992, 0.12159890111044103, 2.729622172392495, -0.17382834759376742, 4.3156738742768415, 4.078158089466536, 0.18787854766628698, -0.8602564054960835, -1.878671131905807, 3.2916410121717714, -2.6657540846403602, 3.654968142519751, -0.8440294789560676, -2.2391076259841913, 2.539447842649855, 4.8133978876564925, -1.0610606603536077, 3.7922107257429527, 4.278919507982334, 1.3045434004064385, 4.100299001661243, 4.830817650920361, -3.6991216557319486, -4.326369794814429, 2.1058591622431564, -2.1332822693487863, 1.3331807437700283, 4.84104991520393, 3.2281792724605207, -0.9436002288587151, -3.819029295669182, -0.7815086340029707, -2.8203114463327283, -3.500361677417331, 4.86176356709872, -3.540608113696937, -3.43738570941321, -1.6146681799018592, 0.2960073503000249, -2.0131031586627945, 4.190362289963922, -1.9093218104126097, -0.6318139598158972, 1.4407026836047887, -2.5976228916568234, -3.5508963332512122, -2.899280129952876, 4.192785360580302, -0.8268452675579576, 4.796467302338687, 2.5922787784830925, 4.7494436385127266, 0.9427120276102734, -1.0353208931509705, 0.1371434806307379, -2.1304081918548468, -2.598546700869134, -2.399473590042592, 1.279753761600528, -3.5358591168320705, -3.923335424391432, 1.8331983956676687, -3.991408612554581, 2.437245039620625, 3.696616094786009, -3.3497710361380206, 3.163689956167538, -1.2078751547361155, -2.9638362591144416, 4.540192775212319, 2.3441671405428988, -3.735970719646856, 0.9386043677505942, 0.8527893674932718, 1.3761382579626202, 2.1691843855118087, -1.0198855884211055, -2.575541801448056, 3.0675528787167146, -4.0735278898636285, 0.21307735195055777, -2.4614437404246194, -2.0379267783244215, -2.5339627765618133, -4.668252250629994, 0.34632276321958777, -0.5885518114807597, 2.5502444116527334, -1.788612267353055, -2.5550145557363657, 2.2253414907056985, -0.8570687295006438, 4.780288512180974, -3.575070834034111, 4.645477142182759, 3.9154144454818898, 0.21693892999097653, 4.882772382730794, 0.7406265766031241, 0.5284313467594774, 1.5775068066567641, 3.065051056847107, 0.3197842664527153, 2.6586794046598774, 1.1009253067651148, 3.8336502271063306, 1.0210184129094877, 3.142836922047744, 2.9437171841578014, -1.6698219833307029, -0.29519795838470664, 2.2914273006502883, 0.7917718222479593, -1.9828011764018227, -2.6045741351132623, 2.9918433713329335, -0.8187450024752687, -2.371502489533577, 1.1903996415320606, 2.8632110134831397, 0.222358879480538, 3.8340608407789176, -4.446156228425455, -3.8255310750939184, -0.7077951101707463, 3.649052082828584, 2.274003499170111, 1.9567179961472325, 3.1795244461957655, -4.692313642729294, -4.6856673302729, -2.022257176179406, 2.3191056423143577, -1.3354467720972907, -3.1701778394281255, 1.1050598139803247, 4.809241484014192, -0.8575213285521581, -1.0592249663925255, -1.1084634799383775, 1.449683938605192, 4.899792313480036, 0.05949854529290732, 2.5676264458641116, -2.3053211735321852, -2.7594453164732347, 4.295719127939876, -1.2335939774980709, 3.461313711481111, 2.2689716954309693, 2.7934498169340536, 0.13059585134488927, 2.5851289602798726, -1.4543061019969317, -2.590730585883997, -4.444986454046452, 0.8047033285619207, 3.041022328253165, 4.700956625224764, -2.443172819080457, 4.499053239232829, -0.3158406340088957, -4.819441846448436, -0.14594262417937998, -0.5436142889321269, -0.9500992926308536, -1.5314872389800405, -3.469336270949186, 4.621638829333591, -3.5380079825757162, 3.7687090750586965, 2.09422019799306, -1.135540151920594, -4.177148560457375, 2.794426763177552, 0.38506185743028176, 2.1003855791406734, -4.191947512053055, -4.1182202314007545, 3.709095211530988, 4.0501097199758735, -1.659457652216505, -2.3960748040808353, 0.7705495082467415, 2.030280329321913, -2.7527615665328797, 2.1161914553538104, -0.9293919467679634, 4.635138929532722, -1.1049133777231424, 4.034187608783215, 0.7201879173123764, 1.223025140639372, 4.61423486027773, 3.97259526810166, -4.425319876487135, 4.833122781279734, 4.701686911691317, -3.5030933543997467, -2.3453379566727817, -1.6775797896167344, 0.6483724000866751, -1.180922651422506, 0.7138646602025664, 2.6392417366680174, 4.2698560367677665, 0.5783700669986285, -2.408179677306308, 0.5801438143308761, 2.9138345289913534, -4.221143098697986, 1.709844876988793, -1.6356098763847493, -4.776814399194929, 3.5802017313803898, 0.9231611555619725, 3.3269380453791726, -3.3817785602961505, -4.366754925036563, -4.1678926204764295, -3.823201289604643, -3.43673610189163, 4.830558412534588, 4.0135954044262, -2.187446978121547, -1.7680429537736786, -3.443210661936188, 0.7000722141680829, -0.12321530430752681, -1.4353445914281702, 4.554810233185801, -0.3810637137606774, 1.8530289973404148, -3.0833591968121645, 1.906673640522305, -0.6822704184854755, -2.5186814492826928, -1.285304939048999, -1.8183339414044566, -2.4845806786738778, -0.7267446105862074, 0.021169240414375956, 2.706173986126906, -3.146026104397267, -4.741110901641359, -0.11255755017907987, 1.1265950739981143, -4.886963036778871, -1.4905099207806547, -3.370574501993212, 1.6288292780123843, -2.876089858856389, 0.038383931426499984, 3.015732738398043, 1.6797212815197673, -3.2993210200150824, -3.834946694609659, 3.356880093368858, 1.2474310089490626, -4.08443843717513, 4.622794279798217, 4.261371752410447, 1.396821872440536, 4.400078590051809, 3.890463817257933, -0.018996154497737727, 0.49830205147919937, 4.141436133881193, -2.0959231265001446, 0.7333266108649807, -4.509346378037567, 4.586765361933418, -4.890926793649512, 1.0174257675131573, -4.535572723749946, 1.412590809226339, -2.93368373400126, -2.827296389196042, -0.43403309677580815, 3.321376006998218, 3.8252123668483176, 4.598738111333484, -3.1860596582582557, -4.684566541361075, 0.9802894582103994, -2.56872828870506, -3.2115402670692283, 4.273384294091027, 1.77506713804814, 0.39822273687375187, -1.9858302991456123, 4.043099964099346, -1.826317531731334, -0.7359794695932864, 0.749978451341712, -4.554578732011969, 4.597640093730622, -0.09434758161861101, 3.1525917327442645, -2.7864785149688744, -4.926393511320275, -0.6567111303256903, 4.794053396581152, -0.5379201043909445, 0.422448526103647, 2.2192531564183504, 4.698068207774009, -1.9358943076454818, 1.1969091999600572, -4.5968649469267735, -4.007585337938167, -4.92811957071098, -2.495676049154094, 3.8014967240633144, -1.020967768048754, 1.534755461060774, -4.695614278557914, -1.0411769276617622, 4.820811482322437, -2.028872949788212, -2.4470573617210944, 1.9844904027751076, -2.04690595489601, -0.7337804069887532, 1.726484761080746, -2.679209503182447, -1.7912985845036533, -4.890718132537413, -1.1539055155309166, -4.835498919853009, 3.8962455753445244, -0.7547146983470494, 3.98200632501179, 3.2374233205808025, 1.3260276139295062, 4.828167492132906, 0.35296756790090456, 3.1260999508003273, -3.440583886949611, 3.511161236718282, 3.3701556354262276, -4.699117056344536, -0.9952355325770199, -0.8645301685116085, -1.6639794632605973, -0.9285976233640341, 0.7835995701746494, 0.08561988456726866, 0.1245310919116811, 2.761434415125141, -1.8442569129263484, -4.395359667754446, 0.4842972260307876, 0.33993190959700925, -3.0845036909637704, 0.7004811042712014, 4.561748498929093, -3.313447261648712, -0.1576401333279538, -1.4242151100545577, -2.097298975841154, -4.5317008833872165, 4.7947225133438405, 4.601603163301487, 2.775610470613503, -1.6170856115491503, 2.2115071470157224, 4.053773117244932, 0.42783879581917894, -4.528817061743555, 3.2813412705395013, 0.42818496899333525, -1.9084199902654753, 1.6466399869380712, -1.5443139877363352, -4.536253431923986, 3.4209560634449883, -1.2119219684579443, 0.3244255875144564, -0.321854372040816, -0.08877678381866438, -2.8510690999639055, 4.542973363664503, 3.328526757755961, -2.5339563748522362, -4.743590603042942, 0.8416173414445787, -1.7366491088709477, 0.13175743220377534, 3.381962879358257, -0.6558227738964861, -0.8288599796592759, 0.08002832516428882, 2.8438027762296114, -3.334098778301635, 3.2001534296501877, -3.5633709632151858, 2.8186104538774126, 4.167084607981945, 2.0378319883730267, 4.028264748671997, -3.8999342452308614, 0.7512863536543124, -3.550055914845572, -4.379539328511624, -0.06678572467822086, 2.6730680923976315, -1.6242522112499067, 2.766643625308519, 3.822316340828559, -4.863442090443631, 1.2029759906746031, 0.8209922359590447, 3.6963488607974746, 2.368265017716028, 3.925790180633859, -0.6823543223570772, -2.215797443784868, 4.615537633802916, 4.98638557133517, -4.65713870935536, -2.4731363983215635, 3.0418537984621548, -2.5970496144701958, 3.5511878490954683, 1.8514414586070904, 1.9501296071021734, 4.074701173479641, -3.1689884755036566, -1.9024758886116366, -0.6256199727536753, -3.5073055348952344, 1.4149999924118886, -3.3907652489302933, 4.2334196950526, -4.873702153903089, 4.688619540706725, 1.568963067573077, -1.9074524176077667, 1.087794927144527, -3.381179436515022, 3.075997135991857, 3.3628576851499155, -1.460881022552245], "sigma": [1.0285672175173277, 0.4971698540623858, 8.690654987324054, 0.39320959479346984, 9.997506411437405, 6.039464572703454, 7.145327377487666, 2.9309593245873855, 3.148383337814933, 4.680727930376468, 8.818229654166965, 0.38032900660401314, 3.7169486491971493, 7.575599248783156, 9.606289968352877, 1.0436564089724498, 0.11779414641079891, 8.205286507726164, 2.076957526438906, 3.6597964635706326, 8.918054907968047, 7.0831661160302986, 6.952657268410935, 1.1782235769626992, 1.2440044516656634, 6.992286582343386, 8.961274623493557, 8.950407409362839, 3.6523544169737545, 3.6051659896330936, 2.255795385193141, 3.4416318400625556, 5.6906300876263725, 1.158013071387266, 4.000454277207998, 1.220867138631061, 1.1165467437224141, 4.159597238620488, 1.4669892181870547, 1.9823124020505356, 9.879340190203475, 1.358995578090656, 3.1599794977790108, 9.357564544053409, 6.025091464204149, 9.990258526320792, 8.57648287952145, 4.107592781686143, 0.6217184529958585, 0.6086694270482805, 4.6243527895835435, 6.899434235563892, 5.256309105005977, 9.312344927799865, 9.555684991584421, 1.636694937947929, 8.471476981110472, 0.7038124876449557, 7.606143088045336, 9.413211998171812, 9.47314995217214, 2.352078028909349, 9.49574160785447, 7.19781055150497, 6.269313665162333, 2.994160036201642, 6.28531842539447, 3.2241109975565876, 9.470379296075869, 1.113454229825166, 9.243931677214725, 5.540930724161058, 2.7833704265299866, 3.7649327737635905, 6.736479689635445, 2.784340874510778, 0.40822634277669956, 8.136443668466889, 10.019911421631374, 0.36003197294739986, 4.0175700456400305, 3.1721116526817084, 9.519001096202471, 8.667166601739957, 2.511614394996203, 7.888378856322589, 4.432101088395726, 1.7498817728645177, 4.931825226817676, 3.3767337486053086, 9.940864045245734, 4.187725107016313, 7.870774540695787, 7.654987112169238, 5.188041975807638, 6.720422674248659, 1.688379365502114, 9.685969591560642, 6.630032684776593, 1.6067107792965152, 4.342330521649851, 8.90305718030178, 1.6451733674007796, 1.5679251059340127, 1.9961202064958605, 6.142954482766724, 8.00729384559053, 3.6027693648540757, 7.513849262278141, 1.856079669787779, 1.8930633192415158, 5.119697821604114, 8.826958305408317, 8.47062361315968, 4.171793095044702, 6.140191681092647, 6.905345000022092, 3.3207107465481456, 0.16356954290220652, 9.239168196310214, 9.330561989737456, 9.63536629131939, 3.1319286686382486, 5.409235647760484, 9.728608046380938, 4.254112973962722, 4.290267212615265, 0.7604286473949639, 2.4354546772113794, 4.858625358504577, 4.859284634376584, 5.279279014438655, 9.015603676099019, 7.899087887760176, 1.977986428460986, 0.629807430539726, 3.8638247944476123, 2.6428966987804228, 4.363477550547994, 1.2404021809635102, 0.1742201310953028, 6.922713620315225, 9.331490353853345, 3.245426168379105, 2.2581181912393244, 7.153328181227497, 7.991759163674284, 2.263009050276381, 3.414405427874909, 1.5690416207321178, 6.941604866019796, 3.9618812279499305, 4.595071377793676, 3.1097637180725823, 1.9681578692840151, 9.768483278559392, 6.486131772525816, 5.435381523949189, 4.801249742916992, 3.552502877436561, 9.97459789223468, 2.5925434818466555, 2.8595002686561566, 6.17918495953754, 2.5340572090910904, 2.1289648262834615, 2.7654809647235967, 5.147954912200162, 2.5082834525494935, 8.065775151753519, 0.7400083985639027, 4.0557563570288035, 4.149546816020102, 4.748282039967797, 1.9958428259841599, 2.498775104800799, 2.5380114780887584, 3.9087176058155104, 9.346550835430047, 2.2565180733953336, 7.862243567297844, 7.910377084873315, 1.2194142749847725, 8.92335140325798, 5.409134618712004, 6.5042996444870305, 4.264633015752682, 10.029128450136149, 6.632738647151888, 4.093911459026461, 5.979272841134792, 5.90731303008196, 3.907026736843734, 0.37748548729291886, 7.128699951369466, 7.596446004568243, 7.269541203987748, 1.511530828145653, 2.130750767662214, 2.653745951481279, 8.394250107212143, 7.036667948640854, 4.477753714513314, 0.4253681314289547, 1.340544481301652, 7.276989758321634, 6.89062689398437, 1.7369457964490076, 5.446425602339593, 1.211003799826943, 6.379931605976005, 3.816203469255702, 5.921922640643744, 0.4621603608676804, 6.395847573043188, 7.734272134630015, 1.7540966978052808, 0.6773466174186981, 1.921366179017323, 6.639941182887841, 8.975468905323622, 0.8768714256618791, 1.781131773486646, 4.919428546923071, 7.2560266121160515, 8.760248554564342, 4.9251448778602445, 9.794226736366506, 8.528613421814473, 3.5775464089275952, 0.11894582189090222, 0.334167934453805, 3.3346994392435927, 8.153731990966486, 7.145903250275495, 5.321030903743361, 7.7728576773163445, 9.21589048330769, 9.155714547667861, 9.51123682910567, 8.770504731276207, 1.239066057147249, 9.909000563740381, 1.8871282358649544, 7.92402024287513, 6.416281479786072, 6.084163497460865, 6.129069982561754, 9.142253970494965, 4.855249444619499, 7.32285490453915, 8.365794014731609, 9.939437361777479, 1.2218598557576787, 2.4529107207015666, 0.590143877333572, 2.523644215438933, 9.93633565814606, 5.942079284077256, 2.180482760614056, 8.088178250938444, 1.1024671138996145, 2.26245943301952, 0.8598271219930008, 4.932500202229064, 0.7506132711524404, 8.459775534747822, 2.9301397359989, 3.115428445738154, 7.591104238772028, 9.447422777615756, 3.5985104359767672, 6.776231368616136, 6.520334807468911, 5.393813589129083, 2.9154121204906605, 2.815104597962771, 1.5387482903813587, 9.878613999291556, 7.266548371643535, 3.4156860414849235, 6.863413293247606, 2.017552318052296, 1.187285077602085, 4.804087651927357, 6.463161030488832, 9.655646910739835, 5.809465535981383, 6.086658143524328, 3.8077045189626912, 2.0678508634719637, 8.728890022029455, 6.212163676174371, 1.2532249256951833, 4.943159145725484, 4.065074879790929, 8.736925767604514, 5.53775728008288, 1.6268382212154275, 9.802494984323543, 9.445750606187174, 7.410504937235901, 5.532067484513818, 7.902485059368003, 7.94579835886852, 7.55354558660765, 8.39980859123309, 4.690478799085316, 1.9976071155694375, 7.790472410605844, 6.405869969124127, 0.5695290610825919, 3.8953664898391502, 9.234573310498716, 7.707847113644595, 8.645806024096164, 6.613268233363597, 6.375689570936738, 7.985525680352385, 2.076931687652993, 1.8237793484961895, 6.304996944881101, 3.0666347481851655, 5.787609983132585, 4.752600238172425, 5.270884332853366, 8.220102715460298, 9.903763497282808, 5.335529230862799, 2.1614472887705327, 8.708550760472454, 3.422619760710061, 7.250497564926241, 8.23039902264185, 1.5158570138380856, 8.267471283033284, 3.139909261016247, 6.242527887433575, 1.541600917282, 0.812914125982852, 7.38063680909322, 5.674927158724621, 2.8297324738904672, 0.7480010987442974, 4.031689901498879, 1.2263806851796444, 1.3888419226055693, 4.3901263486704405, 6.114548631641182, 1.054169570646759, 8.554006563257248, 4.849664144146965, 4.287088811920829, 7.518266444935995, 7.133150549599247, 0.33158421288509643, 8.982885115071898, 8.24992917117572, 7.144575757896484, 5.975240740873431, 7.834777256281435, 6.1599032937419045, 9.045529512310967, 5.025026404005939, 2.006209076873393, 9.186018397866711, 0.6971874154088075, 7.938994698696092, 8.260421231515751, 2.313594146242526, 2.1223942940955265, 7.700458032152285, 9.59914570364481, 7.920363524916239, 4.703261085905697, 5.897100449522023, 1.47285694892486, 1.2323327806803763, 1.006803215437162, 0.2363854122104724, 4.9258251470185215, 8.06885828563585, 6.826813248071784, 0.6524712021781064, 3.955037826492499, 2.6949481554930332, 7.982206865822541, 8.798041926112912, 1.1119137075194963, 5.160286126935206, 0.46389172438937354, 6.317854549041704, 8.45355235062281, 3.0890682139548544, 8.58171393506789, 0.26451605821603097, 4.946343914168159, 8.800853812260764, 3.1843197480757923, 5.883605626851682, 8.638913339382873, 1.0876112929743775, 2.25890230017333, 1.5452490355512372, 5.039147335835574, 6.6267601271312, 2.586305992719984, 6.435139564909964, 7.666113273289076, 8.865615566096398, 6.2249219680244465, 6.684342142048265, 7.763468453794154, 9.16319927003873, 6.477067135935224, 1.8798486015772475, 4.886200209007677, 5.715117894817682, 5.399126715699299, 1.748809890250449, 9.793761950029317, 2.2389334655160718, 7.7473084924899585, 4.730326761193695, 9.24256446134414, 0.5949390077233317, 0.4364335013327624, 7.503911046648518, 7.340616846974182, 3.9436490436841107, 0.7152523221410089, 3.5371789526541053, 1.3065650503822535, 0.3618753236895954, 7.059033352798387, 5.563763612164899, 4.52515172982103, 2.4172840952367767, 1.6317562404021724, 6.85424838819266, 3.0527189034659497, 8.748409346880575, 2.6959523545716046, 4.349413456056934, 7.201017535288103, 9.451939159667436, 3.767043048299754, 1.8888577646595917, 0.5194087634095178, 2.3528190957640924, 4.869878695681822, 8.491620327869986, 9.17576925476382, 2.6426750777553267, 9.258658150881068, 8.336839302183892, 7.719298438845576, 0.5526148106797056, 2.168826213968266, 9.61929743434879, 4.435185683022917, 0.8651611809193182, 9.99057396199757, 2.2163066610896487, 10.01266133906173, 3.0718789103302, 1.5971694892517885, 9.208431902382253, 4.567552375351193, 0.7361446672474768, 9.362402518501549, 4.111885727198021, 8.190485154136525, 2.4477157398975335, 5.66016141331066, 9.80608210394499, 0.3324591147853949, 8.892049042805164, 3.0082713161163857, 9.772850778712474, 2.8145978089626134, 8.233730284807098, 3.5135131677587785, 3.243293875251784, 2.4769540448588434, 2.9917817295758953, 1.3011383311088731, 5.374289234603659, 8.1391020537308, 7.178650447478713, 4.146186691850631, 6.7344792993213, 8.104060876115243, 6.743018587128043, 2.997084913302587, 7.741892663421917, 2.5698072368820912, 1.4781775187018809, 5.526041078812103, 0.7066319268447706, 0.5873776653932993, 7.10283071531853, 0.8065329802891651, 7.618226619720138, 3.6884664547880153, 3.4553347789402644, 1.7513976336082826, 2.3380138639190142, 5.762943241081083, 3.7717781746694046, 3.9415981278105936, 0.7800720648985892, 0.3987730851444037, 2.2258265263158528, 6.765108336497844, 4.698023787275388, 1.3463175991815135, 9.546843680786152, 1.6971375903170371, 3.658147809790162, 7.614354140666389, 9.09229423213538, 0.6566436919928197, 8.604957080861272, 5.492410747409323, 4.437320709448486, 8.117664456913294, 2.2272608177039066, 0.32404535717214455, 5.391458159783485, 1.0728256501315114, 7.650473049254949, 5.6930282913522285, 9.07185638286054, 7.899446403189791, 1.8959298694370152, 4.431441006344372, 8.921535653431748, 6.3319425518260415, 2.9894580930844894, 5.277510486231162, 6.814731520772517, 4.912155291741144, 0.8255066287914735, 2.08820604527996, 3.6261728068153407, 6.875753156797575, 8.350912122888461, 7.585070356722997, 9.40064781366508, 3.4299991606069624, 0.1280192026005388, 2.264238699765795, 8.954900296858916, 3.3577595468283463, 8.008079894660789, 3.592750218280704, 4.502595339028089, 9.040124682421839, 7.595657633417549, 5.411236359963926, 2.3203132836207274, 1.016002685458125, 2.242768418151726, 2.1868818181029104, 1.8847824624254084, 0.954507259712226, 1.101590215300432, 5.7143271127694755, 8.31048872793667, 2.083960477009069, 3.550985171015326, 3.959039866068208, 2.3540234507862667, 8.737369824173602, 5.322540325830244, 5.417435922549743, 7.861061421540258, 0.8076897607866461, 8.041475610906625, 3.3850980426919186, 9.869215149215998, 7.25817896223467, 6.148376108130019, 1.3210846440129498, 1.076812975000313, 8.644653157945116, 3.4654942342659525, 1.188518917674124, 2.2199651956731006, 8.77603114309213, 7.601064846052406, 4.569113898253381, 9.07655238627045, 0.3888165852044033, 5.585035956067165, 4.885214803626757, 10.008425887766013, 8.318789913918275, 1.3505770676108286, 4.33747234868784, 1.9219738873653436, 3.477294359342588, 8.352925258712531, 3.568428416498175, 8.300408676298883, 3.871700992894397, 3.8402318802916304, 7.022989313548445, 7.3181249473305385, 4.4807717962582165, 7.898272055164238, 4.575116045194449, 0.8621992931765575, 6.707336996488752, 6.497644166485073, 9.020305350839953, 2.5342396863641103, 4.470440849998511, 9.277481267035467, 3.1227348581902614, 9.643746387729854, 5.343054842690282, 4.225579928882238, 10.035239775721701, 9.370886995835694, 4.729422656318594, 1.471107899223495, 3.389683760328809, 2.4542098725264885, 7.199352375677269, 4.367050997076112, 4.155020376050531, 1.1374807939154286, 8.860745840304443, 0.39222889680143636, 3.8263391940148272, 8.959331190542818, 1.6063960293642998, 7.8394393818521095, 6.091816049075071, 8.18143453667771, 5.389804033104811, 8.874742088342025, 4.6361180062272265, 1.461661730394349, 5.3004292770471455, 3.414168274040058, 5.497122631822034, 2.170060700507226, 9.168946058616404, 9.1573289503391, 7.391221985030329, 5.118940495647776, 2.6172867429767455, 5.335081183787201, 9.484864858084881, 4.0214336528856895, 7.232134926420241, 8.25199468820333, 6.675315084376574, 2.9570053490494606, 0.9826963408078125, 2.7070792173272227, 7.779451892081017, 6.913050940125969, 2.7876481008431884, 3.289928364154934, 6.561609747193243, 6.923613907969501, 6.013791562370133, 7.9902758234406095, 3.3017973630426734, 0.3608379021415141, 1.900857940771209, 9.29846228190327, 0.7838365394759838, 0.758915403112319, 4.84946700980238, 1.9532252462059452, 5.299135865336402, 4.907556583509939, 1.9007758943694397, 4.673326287855507, 8.07899541069604, 7.568874058664793, 0.1949127244580994, 7.940330909984993, 2.297992917484839, 0.8228454373102022, 7.131715307744023, 0.8965915903409881, 10.031116288436367, 8.837807515647777, 9.679690647727316, 3.5446996236536568, 3.2258001156376372, 5.063159269006142, 2.312121893849796, 1.245487664220546, 3.4808640212124584, 9.087167741144404, 1.3859555703476611, 2.8697328267457842, 6.141041446758433, 7.198701435793394, 1.8776078880729297, 2.7676658343757543, 6.94628182722235, 8.872783921740329, 7.568548192030969, 4.6991109086701535, 4.94600604019536, 3.0057770029917874, 4.906430956699969, 8.376167306955082, 7.357193154003804, 1.7428239623762687, 8.99053942182506, 6.201386946949291, 1.1676110868357448, 7.09309774263895, 7.037817208623076, 5.707173032640342, 6.999148253751438, 7.717844956879295, 7.704326177626826, 3.109762072957505, 6.418706296954514, 3.699718293445189, 3.056105156765261, 5.476912903544914, 8.088787850324389, 3.576465093133847, 4.855902945799196, 2.341820998317504, 0.6252318842477221, 2.4236698606586415, 1.9007606396924326, 2.499020543088991, 9.825442210981475, 9.59655436051212, 1.7193960023402621, 5.990845808382412, 2.0895634938367222, 1.617226547582994, 0.31995669507931634, 3.095826759055491, 9.468969156169049, 5.8333597999321425, 4.473076691362721, 6.879796552228763, 8.770028897691748, 0.10162322004391258, 4.895967156193624, 6.245091239522512, 7.55691132399412, 1.0596165545143277, 8.004473225250226, 9.20493416601932, 5.100414276096492, 0.6244904625745628, 5.0201102523826915, 9.926196068523103, 6.629748581025522, 2.269734120186806, 3.508810377170448, 5.727899584882072, 8.861233575449898, 9.209437185231957, 3.930509921859424, 9.671393788401122, 2.2340267413029733, 8.87427005516472, 2.8167133858996842, 3.586508866050464, 10.074078597756792, 4.506315101912281, 6.314229220137502, 7.2324515086566015, 6.899778416656618, 4.788458691699043, 6.0742933276754325, 5.655824555777082, 1.3293339890476985, 4.836376322777575, 7.072458939717462, 4.579471240643403, 1.0690978038747323, 4.9540283896179655, 3.9660584524485065, 3.8965707169146238, 0.7407867656562271, 8.852279825379297, 2.575524330887934, 7.571620283701305, 2.0829306132895984, 4.93405695002824, 5.413224294404412, 8.675221452712721, 2.872109274656817, 6.417268883159431, 3.209397496403613, 2.7855094395519897, 7.018974151859524, 9.236099844761005, 4.306744505040502, 1.46532897229944, 1.4308299324522888, 2.7909916966779034, 6.627946156964458, 3.2301341806250137, 4.100736912692927, 6.080668706720797, 4.318282020788709, 8.39425229904632, 8.534326060750724, 0.26042689882467707, 0.8027412246696185, 3.1002689577987455, 9.299606512855071, 0.9618875808439885, 1.2449136289529772, 7.843646203769541, 2.7818694724708948, 4.305291525646274, 0.2390240802575804, 2.0494164706834836, 1.5809287451286658, 6.606233793034926, 0.12797322321310914, 6.258603509877679, 1.4439604846435372, 2.3376565537134186, 3.4992832789566672, 2.793609529950539, 8.537109210242674, 5.9978567661421724, 3.1453916154112016, 1.2160046938601587, 9.554154752158757, 5.698678463336903, 9.626228584743215, 5.925429328416783, 4.768323650874749, 7.699929418873253, 5.8997402683154085, 8.183695855577222, 3.1869247322987513, 7.698379259882703, 7.1396115527904245, 5.868232864431857, 8.116426423789378, 7.525970164554057, 6.761366849878951, 8.277871876620074, 5.373104087781639, 6.367054118495441, 2.8979643458677384, 0.4979499928525465, 7.663998976712596, 8.376033327530001, 8.303239508650375, 9.7769012994981, 0.37893636716396883, 0.9894363446036901, 3.7679527526151557, 6.184249093875229, 9.603239887619354, 1.0034742044049572, 2.9550872177191025, 5.586649248872199, 0.3354234525464538, 7.571829239397033, 6.5479361496065165, 8.98263255766604, 8.733530656793613, 4.9025970545411806, 0.811078812371192, 8.731057656532572, 2.4905261067385887, 2.7297234434000806, 8.205469195816546, 7.954181414036506, 9.44921765826025, 3.047788511995108, 1.0886802320314148, 2.027194315828745, 2.0167723812392113, 7.233306912245165, 5.378292589077715, 4.941277292640601, 5.102320352664001, 4.886958432314236, 2.175767410193876, 8.975329232692117, 2.3361902692007197, 4.8834870977725915, 7.40783930707045, 5.604123435278871, 2.3907360261717825, 2.0133138766052503, 4.456958501319945, 6.105035384421223, 4.715970763191467, 0.8901728208231173, 5.59694211995484, 5.6314510652481, 3.8881337255857007, 0.9326970814888523, 8.186138925410257, 1.364391958455573, 10.030864294018626, 1.2487860345674662, 0.24782505248701617, 1.1610794971027005, 3.8147634429013233, 3.443792294087824, 4.890096665489347, 1.468460535229864, 5.671083357271366, 0.6301405561872963, 5.170658370137937, 8.769365353154877, 5.238649526564748, 3.2817101979644927, 6.370127720501165, 4.406412153651183, 1.6599448622870194, 2.821526068760256, 8.0269488465328, 2.6691869732193596, 9.416799379771973, 7.060269065096459, 8.967820902012141, 2.9555564782832855, 2.0880168424083676, 0.15985080156740486, 3.1333366816891774, 7.083564880540296, 7.050527280385193, 0.6685061282022197, 7.915274989730119, 3.426830663826188, 2.766007053410282, 4.163026180857392, 1.9490981845838518, 8.616287975082855, 8.575079095180465, 7.953434550736091, 6.743110638009427, 7.337498846860499, 4.077824979107334, 2.431608687343716, 6.583138107464876, 7.571044392145888, 2.237888984813375, 4.125094470650856, 3.3065715537985074, 9.057987943337146, 1.1381659486774631, 3.6786673184956142, 5.590622527677247, 3.8967566743590774, 7.42877849568991, 3.136196091230816, 3.0394642396642593, 4.043746534149983, 2.7641903684988467, 8.496073657842027, 8.292723138402279, 1.1932023019752747, 8.811007319055463, 9.400077689800566, 2.39583588692606, 4.010476254277055, 6.688509481890661, 7.7981060154990685, 3.139743994909866, 6.997707791200202, 5.094773228307121, 7.3747381688773155, 8.933826048256693, 4.271838739810672, 2.8201715826994875, 5.375959601682941, 4.766042079598097, 1.5731957425712484, 5.500160308979367, 6.530799010136352, 3.681421940011349, 6.5965604504836, 9.93622892753064, 9.775859041093378, 4.620626957735701, 6.626060756325408, 1.329022241887201, 8.48865734922862, 2.0254806013778124, 4.540996460505095], "expected": [0.12362180938158751, 0.028882801374417788, 8.825407293302057, 0.018066663357706646, 11.6792007031927, 4.262129245314047, 5.965872978077363, 1.0038049243933633, 1.1582570430101475, 2.5600976775419397, 9.086414598816896, 0.016902410197585246, 1.6143691936809381, 6.706002695924419, 10.783037676322452, 0.12727550470304794, 0.0016213514262090685, 7.867146531275831, 0.504063173986515, 1.5651054558764148, 9.293301412091452, 5.862523454765153, 5.648477221936763, 0.16221281351824976, 0.18083130148383236, 5.713052020906535, 9.383596239445, 9.36085132357678, 1.5587467715066299, 1.5187289439474299, 0.5946058077154688, 1.384071611212535, 3.783994099906378, 0.15669554972364208, 1.870029084537184, 0.17416727122014578, 0.14567450724361955, 2.021772576860502, 0.25146849521177345, 0.4591704542691552, 11.40474606610187, 0.21580714847610807, 1.1668049660071609, 10.231879144882951, 4.241866803160768, 11.662272717888671, 8.595045678315529, 1.9715350531060343, 0.04516658491898327, 0.04329051129261413, 2.4988009169591443, 5.56232931912029, 3.2284311746481267, 10.133228750987795, 10.669728981456789, 0.31301504872504793, 8.385867754432265, 0.05788201953136889, 6.760187184796976, 10.353934623704072, 10.486210291175944, 0.6464473944202284, 10.536285152268785, 6.053834757384857, 4.5927175456483695, 1.0475620525547422, 4.616196724377614, 1.2146459573184185, 10.480077287078243, 0.14486867163983122, 9.984887887517573, 3.58752701304738, 0.9052567173142388, 1.6563197897363344, 5.30268401607988, 0.9058880797045489, 0.01947295191932135, 7.735688674349383, 11.73160693571152, 0.015146485722619113, 1.8860649908572125, 1.175781627403173, 10.587964895750803, 8.777766594088858, 0.7371157078468104, 7.271186093145465, 2.2953507220545317, 0.35780561697274715, 2.84213756338476, 1.3323654914454501, 11.547235087776178, 2.049208131561019, 7.238768425281893, 6.84728913394901, 3.145116243241337, 5.277435278764154, 0.33309630156048753, 10.962659915950777, 5.136426499190426, 0.30165126697637756, 2.2033094315168267, 9.262070116260416, 0.3162664180168589, 0.2872634469784469, 0.4655894394432194, 4.409449100421554, 7.492060426630428, 1.5167103885754718, 6.5971247363042655, 0.4025529065073361, 0.41875501393574877, 3.062798290816939, 9.104411725317862, 8.384178351189272, 2.033645551061538, 4.40548368154761, 5.5718639274649, 1.2885219891115263, 0.0031263285678732535, 9.97459993436697, 10.172913323389222, 10.84841267230741, 1.146181682255017, 3.419019218182858, 11.059389460717552, 2.1146951883019485, 2.1507920565079206, 0.0675688734495638, 0.6930903353428287, 2.7583956810607217, 2.7591443154848885, 3.2567091170653444, 9.49772001979784, 7.290941791267977, 0.4571685580456107, 0.046349526246733844, 1.7444743541601937, 0.8161878322494782, 2.2248217979226528, 0.1797855493365731, 0.003546715978161744, 5.599928360433683, 10.17493777540565, 1.2307595272672787, 0.5958309765101132, 5.9792407356484665, 7.46301843595804, 0.5984147926982101, 1.3622597199555686, 0.28767271153466273, 5.630533112245935, 1.8341406773100244, 2.4672562789709884, 1.1300158202465942, 0.4526365303221351, 11.150234828989237, 4.915880014639275, 3.45215118096613, 2.693632434986841, 1.4746828031520316, 11.625738040850417, 0.7853836160703696, 0.9554545269067589, 4.461615385133343, 0.7503477243007383, 0.5296228471505539, 0.8936574619952147, 3.0967005277649355, 0.7351618554702536, 7.601896655151408, 0.06398866306978868, 1.9220888271215073, 2.0120143625748286, 2.6345276071219796, 0.46546005198095997, 0.729598747789192, 0.7526913112727578, 1.7852470701874872, 10.207807792278851, 0.5949868559601401, 7.223085019859666, 7.311796780396656, 0.17375299070449432, 9.30434340371157, 3.4188915043781325, 4.943457672163986, 2.1251670252840618, 11.75319999857926, 5.140620087323504, 1.9584235845352274, 4.177596412518019, 4.0776477733251015, 1.7837028471090532, 0.01665061419660224, 5.9381396946689256, 6.742961026629166, 6.1750964319412684, 0.2669707966372452, 0.5305117975767019, 0.8229025882696949, 8.233671745917151, 5.785805826412888, 2.342880537799506, 0.021142660589734005, 0.20998689763051748, 6.187757232421483, 5.548137411662909, 0.3525350246469526, 3.466194192213086, 0.17136445763902458, 4.756218360887755, 1.7017383380860196, 4.097841899371519, 0.02495830722393288, 4.779978565026183, 6.9898625674145665, 0.3595313794152992, 0.05361072392982958, 0.43137008353844347, 5.151790617318719, 9.413346225151308, 0.08984658514188976, 0.37069936423444566, 2.827867475986154, 6.152157890885059, 8.967318520368215, 2.8344432064764913, 11.20908200633065, 8.499367307814605, 1.4955477768453331, 0.0016532103752116881, 0.013048460869900995, 1.2994008067259104, 7.768597195159118, 5.966834647757836, 3.308425058417891, 7.059780048607192, 9.924402042485452, 9.79522073060064, 10.57069958401578, 8.988328024969732, 0.1793984387987326, 11.473328948787895, 0.41613339013630346, 7.337040083741151, 4.810570183240446, 4.325451944656949, 4.389538873825481, 9.766440365604163, 2.754563786056466, 6.266002982207315, 8.177942885770143, 11.54392087541778, 0.1744506257666189, 0.7030613468078406, 0.04069542145516599, 0.7441937095850859, 11.536717201163459, 4.125785293791861, 0.5555652251644099, 7.644184608481296, 0.1420237665223729, 0.5981241538632414, 0.08638772148324274, 2.842915573212045, 0.06583581502764319, 8.362717361206697, 1.003243611906501, 1.1341364304818982, 6.733481158202886, 10.429330746564718, 1.5131266211957914, 5.365450486291826, 4.9678621017294455, 3.3995513478725585, 0.9931838501810548, 0.9260166837828839, 0.27667180658099966, 11.403069492890046, 6.170012968338822, 1.3632817752022115, 5.504400709143276, 0.47564107272715034, 0.1647175059633622, 2.696817665228141, 4.881122331897504, 10.894128437416098, 3.9436839082548816, 4.328999740123301, 1.6941669993866266, 0.4996526167607996, 8.903233889205595, 4.50936634064624, 0.18352185369016377, 2.855215711665221, 1.930931372449581, 8.919633924861564, 3.5834188381857706, 0.30925624157307, 11.228015321173746, 10.425639139675168, 6.41690102871197, 3.576059018948761, 7.29721439056764, 7.377425262381623, 6.667015245347625, 8.244579661478475, 2.570775152622085, 0.4662833325291807, 7.09181383973478, 4.794970909131624, 0.03790194683515463, 1.7730720623855407, 9.964681129997812, 6.942180839871707, 8.734553598394703, 5.110483789671531, 4.749895616811005, 7.451380833466939, 0.5040506322765789, 0.38866400936085627, 4.645147404376936, 1.0988890449237303, 3.914066979473281, 2.6393215874603086, 3.2463602418422868, 7.895583445444951, 11.461204475195728, 3.3264786940638613, 0.5459074696303355, 8.861791225080681, 1.3688222184224157, 6.142785650873118, 7.915375477167725, 0.2685011895937182, 7.98684266463496, 1.1520303869670592, 4.5535564137770175, 0.27769858011553333, 0.07721809438466587, 6.365278479853385, 3.7631395348228014, 0.9356652419286895, 0.06537838837114061, 1.899345537617583, 0.1757439337101471, 0.22539037895139621, 2.2520798148441767, 4.36876360975759, 0.12985261224359326, 8.550054782029006, 2.7482299334361784, 2.1476064522517477, 6.604883547923649, 5.9455566217549265, 0.01284746458712701, 9.428908686005096, 7.952985287342336, 5.964617939383788, 4.171964019240245, 7.17270627920675, 4.433814580833091, 9.56087695238462, 2.9505734843918625, 0.4703077345207157, 9.860169049646808, 0.05679744734651006, 7.364796700000652, 7.97322697919405, 0.625466555883564, 0.5263587875633563, 6.928877059519136, 10.767004800084036, 7.330269960778, 2.584805771499381, 4.063561060929296, 0.2534841888320464, 0.17745397875188154, 0.11844559852622794, 0.006529367044197968, 2.835226256520328, 7.607709399547968, 5.445851370297439, 0.049745343652762376, 1.8278098865242367, 0.8486538165284433, 7.445188476675815, 9.044858843370028, 0.14446808214451792, 3.11155373241355, 0.025145657102592048, 4.664112160538973, 8.35041831429662, 1.115025337793837, 8.605533630914127, 0.008175867105745744, 2.8588960019014045, 9.050641306732272, 1.1848491995063473, 4.044984374866736, 8.720632276192916, 0.13822199460771742, 0.5962448410352621, 0.2790144536978293, 2.967179720978931, 5.1313571114153875, 0.7816089996149388, 4.838889220392062, 6.86720801976014, 9.184331055009725, 4.527907671202002, 5.220920520699081, 7.042734627052952, 9.811242303653348, 4.902149325922668, 0.4129290969170092, 2.7897947648183594, 3.816630587093369, 3.4062520401822556, 0.35736740661762073, 11.208018174607606, 0.585749753780102, 7.013445690175201, 2.614640734547748, 9.981934493203134, 0.04135943797814473, 0.02225696279022307, 6.57968486310524, 6.296436839802432, 1.8172984530238783, 0.059778951304688584, 1.4619879846526032, 0.19947653375046448, 0.01530198169648046, 5.822643583330689, 3.6171546622806865, 2.3927428696565527, 0.6827868183943421, 0.31112886422658625, 5.489710167895763, 1.0889385457981131, 8.943096786097668, 0.8492863898539466, 2.2105030911328245, 6.059230530121343, 10.439304705000659, 1.6581770707316597, 0.4168965014835851, 0.0315245056201175, 0.6468548096505422, 2.7711882314073892, 8.425794739880166, 9.838178693824048, 0.8160509545576062, 10.016727005300192, 8.121431761995401, 6.962823756771884, 0.03568410262276538, 0.5496411589235869, 10.812259146088142, 2.2985468090409675, 0.08746288297863627, 11.663009186310191, 0.5739703291270903, 11.714635858060324, 1.1026506143061106, 0.2980792532838532, 9.908344559538042, 2.4377929184966596, 0.06332221233687244, 10.242461891297904, 1.9756582054308574, 7.838789351656636, 0.7000864953383401, 3.7435821836835603, 11.2362343722346, 0.012915351415022043, 9.239180201823185, 1.0574595032660552, 11.160207623648416, 0.9256833016220661, 7.921784286036886, 1.442490328698231, 1.229142804020415, 0.7169116492446209, 1.0458985247188488, 0.19782295346767767, 3.374984716000416, 7.740744396746498, 6.021647824661774, 2.0087571968359845, 5.299535231165555, 7.674235608917165, 5.312983322891609, 1.0496096964802648, 7.003643486824753, 0.7716686106030496, 0.25531887659475133, 3.568272040841263, 0.05834669361163162, 0.040314808074600465, 5.895120234560736, 0.07601057206370543, 6.781683446746949, 1.5897228447311693, 1.3951149802086122, 0.35842579419946835, 0.6387396901445886, 3.8807746397986738, 1.662348306686933, 1.8154087528771685, 0.07110484441129489, 0.018581527637267753, 0.5789117530664515, 5.3478504094679655, 2.5790523751986534, 0.21179942902908253, 10.649993975725152, 0.33656104292658623, 1.5636956857617479, 6.774790700257054, 9.659990552902475, 0.050383611236753265, 8.652212079065945, 3.52497268222562, 2.300760307962499, 7.700021374081172, 0.5796580786744442, 0.01226990911467103, 3.3965828898439967, 0.1344893938024881, 6.839215970634329, 3.787184151202823, 9.616611504033575, 7.2916036333653285, 0.4200241644048747, 2.2946670702343233, 9.30055723855948, 4.684936092085507, 1.0442745130574107, 3.254527524765368, 5.426592876387065, 2.819511791141576, 0.07962892798800245, 0.5095378338326148, 1.536479366833845, 5.524211439258486, 8.148873316884147, 6.722781032748307, 10.326313461506862, 1.3747311282971058, 0.001915049370066533, 0.5990652897527734, 9.370251523098572, 1.317434172287579, 7.493531439510468, 1.5082863057409295, 2.368948251920954, 9.549454851509733, 6.7415615089886, 3.421548868936116, 0.6291047897613897, 0.12062003517605355, 0.5877580728313266, 0.5588308417898277, 0.4150994933015882, 0.1064604287285056, 0.1417979259311712, 3.8155744709450814, 8.070173442896959, 0.5074680394594203, 1.473423039235291, 1.8315108212678093, 0.6475171999101684, 8.920540633422094, 3.3103023330459873, 3.4293933821373384, 7.220913095952983, 0.07622876674423225, 7.556161597962671, 1.3389743034212793, 11.381381277266646, 6.15580825282476, 4.41723588469595, 0.20393465285878237, 0.1354909534472731, 8.732224353489515, 1.4033309395928206, 0.16506003643956432, 0.5758668387725325, 8.999658924068038, 6.75116331925153, 2.4394600346494397, 9.62657006749515, 0.017665230254607634, 3.644867001877365, 2.788669636313402, 11.70472714872511, 8.086303774423175, 0.2131417275980046, 2.198382091031733, 0.43164300252801113, 1.412903988794789, 8.152802652001455, 1.487934169974381, 8.050608184326045, 1.751593636673096, 1.7232355140454165, 5.763333541268804, 6.257910959481343, 2.346039884392051, 7.289435824786044, 2.445873363373455, 0.08686504801407233, 5.256903360809603, 4.933346132814911, 9.507628803691151, 0.7504557931603566, 2.335234214003291, 10.057496990009982, 1.1394623017329344, 10.867291098910352, 3.335869118534084, 2.086423093663536, 11.767528166091948, 10.261034327614848, 2.613641360234857, 0.2528825103087053, 1.3426045185402473, 0.7038062783740597, 6.056428587382915, 2.2284673017931844, 2.0173258557512868, 0.15118819563041397, 9.174244244880478, 0.017976656167186463, 1.7107898769278937, 9.379526636976607, 0.30153309335439027, 7.1812451324765725, 4.33633973918647, 7.8214749473794845, 3.3944990318840684, 9.203250022327165, 2.5115319232922593, 0.24964535606810437, 3.282855956290548, 1.3620704899980063, 3.531023354348188, 0.5502670437586388, 9.82355259270287, 9.798675365320953, 6.383549507192852, 3.0618922353550886, 0.8004465734949042, 3.3259200404015847, 10.51216172765818, 1.8896943081614517, 6.11171056525215, 7.95696812951955, 5.2068285649236845, 1.0217248572812876, 0.11284138731007702, 0.856311287091573, 7.071763660044777, 5.584306580774692, 0.9080413765527503, 1.264743983967337, 5.030956164120868, 5.601384978305435, 4.225970702492656, 7.460248290381436, 1.2738860205930447, 0.015214372235980338, 0.4222105313422864, 10.103038467184136, 0.07179277635593104, 0.06730021846030612, 2.7480065119870387, 0.44579418298252876, 3.2812539855627048, 2.81423506760856, 0.42217408452893534, 2.5520075060452467, 7.626836949700464, 6.694101558246715, 0.004439255312794492, 7.3672760448111605, 0.6170595963651939, 0.07911635485272148, 5.943164283846291, 0.0939331877935946, 11.75785958123756, 9.12680593543273, 10.94845140241385, 1.4682114862542848, 1.2159190015094175, 2.995524782911657, 0.6246707796270661, 0.1812627648101151, 1.4158063477868106, 9.649100475575064, 0.22445452007275968, 0.96230484044953, 4.406703150911461, 6.055333435350326, 0.4119452896393354, 0.895070088868998, 5.638122900694596, 9.19918916997434, 6.693525161449457, 2.5802460972975365, 2.858505445330373, 1.0557066416781737, 2.812944235766945, 8.198236186242958, 6.324905704622066, 0.3549251577654049, 9.444984257994417, 4.493734406036289, 0.15930380871901434, 5.878975197532963, 5.787695907955506, 3.806026596731748, 5.724270188139665, 6.960201915925664, 6.935839927438228, 1.1300146246537837, 4.814206855776425, 1.59943668554086, 1.0913557135829117, 3.5051080343604357, 7.645336923799988, 1.4946438528410977, 2.7553053470612574, 0.6408215834845112, 0.045678514654208364, 0.6863990338946252, 0.42216730823986653, 0.7297420822268437, 11.280645470724567, 10.761192358270259, 0.3454471105031198, 4.1937836567109565, 0.5102005042725397, 0.3056127457893523, 0.01196222986329114, 1.1199097834774672, 10.476956551467406, 3.976191274046612, 2.337988806570456, 5.530710549529599, 8.987352748756331, 0.0012067453745719385, 2.8009588635184297, 4.557296810312574, 6.672957996743355, 0.1311979981408418, 7.486783104116427, 9.900818805880077, 3.0397694389887375, 0.04557024455071942, 2.9448030187794436, 11.513183798745384, 5.135986306256511, 0.6019767413516702, 1.4386314047939912, 3.833721237190456, 9.175254255681581, 9.910508062002647, 1.8052091780274684, 10.929690713865613, 0.5831851727686753, 9.202271036397255, 0.9270753941127191, 1.5030504453487021, 11.858790829384484, 2.3728640227373323, 4.658760948627046, 6.112245649668315, 5.562884291098952, 2.6792992937590507, 4.3114292066685245, 3.73784766073423, 0.2064894927217677, 2.733190558055849, 5.844812835615, 2.450532185813359, 0.13355637224468667, 2.867785873598919, 1.8380103826129912, 1.7741684991026208, 0.06412334495697616, 9.156721524902908, 0.7751059185218157, 6.69896009974463, 0.5069665963735506, 2.8447103631883204, 3.4240632903291357, 8.794089450061506, 0.9638992844986667, 4.8120508971801454, 1.2035849763425297, 0.9066486268713693, 5.756745434685327, 9.967975853840382, 2.1673445378498477, 0.25089962492964185, 0.23922456458084582, 0.9102209516404718, 5.133194053486856, 1.2191885234790496, 1.9649592766460484, 4.320484225470098, 2.178972469901691, 8.233676045728394, 8.510757219722072, 0.007925039177147911, 0.07529755466374836, 1.1231260041721893, 10.105525097821992, 0.1081131133701716, 0.18109571820740608, 7.188954440168647, 0.9042806471702626, 2.165882377399817, 0.0066759496190178435, 0.49078375996120516, 0.292048063702277, 5.099617672475187, 0.0019136739985188282, 4.57703905034606, 0.24363538034259785, 0.6385444725080439, 1.4308296862513235, 0.9119292506525489, 8.516309051636698, 4.203605189607242, 1.1560568425937592, 0.17278269423421347, 10.666311972074906, 3.7947052311187224, 10.827846229060388, 4.1026964398768255, 2.6568142390529923, 6.9279257990381105, 4.067199956321115, 7.825799199644002, 1.1867885625111299, 6.925136603229674, 5.956332128960865, 4.0238744120352425, 7.697672877261199, 6.618426095258745, 5.341936719184353, 8.006950422385595, 3.3734963661148645, 4.7370374876653525, 0.9813316704142869, 0.02897351593465496, 6.863420621454972, 8.19797392161856, 8.056100397832035, 11.169460608654727, 0.016778854714287295, 0.11439458240798495, 1.658978034753422, 4.468931391479574, 10.776191346619672, 0.11766360894287548, 1.0203997552997712, 3.6469730176803314, 0.013146695038355296, 6.6993298502421315, 5.010010208360809, 9.42837849838472, 8.912703051815551, 2.808549864571404, 0.0768698178929021, 8.907656296444532, 0.724789571863676, 0.8706969801893961, 7.867496854198737, 7.393000283174335, 10.433293982369362, 1.0854239361098121, 0.13849382609140068, 0.4801981677908148, 0.475273401192573, 6.113691562177525, 3.3800146992781457, 2.853042173014392, 3.042041848886875, 2.7906606530104643, 0.5531649749105002, 9.413053254026945, 0.6377436754636255, 2.786697502402346, 6.412285416506431, 3.669823047828964, 0.6678716227520477, 0.4736447336456859, 2.3211698448729563, 4.355180007900672, 2.5987945485782826, 0.0925930519774809, 3.6604238005655687, 3.7057009458686747, 1.7664938333449591, 0.10165084067209885, 7.830472351741722, 0.21752443095168258, 11.75726884384049, 0.18222409651075674, 0.007176623332333635, 0.15752651001633078, 1.7004542945472134, 1.3858098341055045, 2.79424593245204, 0.25197316889150867, 3.7580434826282656, 0.04639857075974839, 3.124074831682158, 8.985992825479912, 3.20677454836231, 1.2584332724463618, 4.741612062314624, 2.2688196345783576, 0.3219712280478568, 0.9302461331492569, 7.528886147821699, 0.8325066903405854, 10.36182791077231, 5.824682316310209, 9.397310822190354, 1.0207238549613797, 0.5094455041948304, 0.002985790801925918, 1.1472124857647967, 5.8631835641172945, 5.808619570357214, 0.05222043974447146, 7.320854141801678, 1.3721924575401745, 0.8939975025199118, 2.0251072260519862, 0.44391229419753153, 8.675013319337513, 8.592232263244355, 7.391612006724829, 5.3131283820011195, 6.291089027299488, 1.9430630930757922, 0.6909030528582896, 5.064023023727747, 6.697941103098336, 0.585203367192019, 1.9883715338509274, 1.2775726016431566, 9.587231529765967, 0.15137038509744188, 1.581287242498103, 3.652162387128282, 1.77433784170489, 6.4485869103718185, 1.149307279556115, 1.079502904854796, 1.910722380773758, 0.8928235514833418, 8.43463467431209, 8.035706602542833, 0.16636344467551947, 9.071536724342494, 10.325060973523097, 0.6707240373180714, 1.8794104511811487, 5.227432495079134, 7.105718677590364, 1.1519091181340317, 5.721914259090571, 3.0330491997278672, 6.355108223564858, 9.326199966577807, 2.132354656293148, 0.9293532099905478, 3.377082980235288, 2.6542723558755585, 0.2891979858516552, 3.534926877444183, 4.983820309827973, 1.5836562953826887, 5.084694121909317, 11.536469360439055, 11.167079313533769, 2.494775981193254, 5.130274068746913, 0.20639265480828975, 8.419915745461335, 0.47938662772381313, 2.409528490709658]} diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_large_sigma.json b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_large_sigma.json deleted file mode 100644 index 8ba9906037aa..000000000000 --- a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_large_sigma.json +++ /dev/null @@ -1 +0,0 @@ -{"mu": [-100.0, -99.59919839679358, -99.19839679358718, -98.79759519038076, -98.39679358717434, -97.99599198396794, -97.59519038076152, -97.1943887775551, -96.7935871743487, -96.39278557114228, -95.99198396793587, -95.59118236472946, -95.19038076152304, -94.78957915831663, -94.38877755511022, -93.9879759519038, -93.58717434869739, -93.18637274549098, -92.78557114228457, -92.38476953907815, -91.98396793587175, -91.58316633266533, -91.18236472945893, -90.78156312625251, -90.38076152304609, -89.97995991983967, -89.57915831663327, -89.17835671342685, -88.77755511022045, -88.37675350701403, -87.97595190380761, -87.5751503006012, -87.17434869739479, -86.77354709418837, -86.37274549098197, -85.97194388777555, -85.57114228456913, -85.17034068136273, -84.76953907815631, -84.3687374749499, -83.96793587174349, -83.56713426853707, -83.16633266533066, -82.76553106212424, -82.36472945891784, -81.96392785571142, -81.56312625250501, -81.1623246492986, -80.76152304609218, -80.36072144288578, -79.95991983967936, -79.55911823647294, -79.15831663326654, -78.75751503006012, -78.3567134268537, -77.9559118236473, -77.55511022044088, -77.15430861723446, -76.75350701402806, -76.35270541082164, -75.95190380761522, -75.55110220440882, -75.1503006012024, -74.749498997996, -74.34869739478958, -73.94789579158316, -73.54709418837675, -73.14629258517034, -72.74549098196393, -72.34468937875752, -71.9438877755511, -71.54308617234469, -71.14228456913827, -70.74148296593187, -70.34068136272545, -69.93987975951904, -69.53907815631263, -69.13827655310621, -68.73747494989979, -68.33667334669339, -67.93587174348697, -67.53507014028057, -67.13426853707415, -66.73346693386773, -66.33266533066131, -65.93186372745491, -65.53106212424849, -65.13026052104209, -64.72945891783567, -64.32865731462925, -63.92785571142284, -63.52705410821643, -63.12625250501002, -62.725450901803605, -62.324649298597194, -61.92384769539078, -61.523046092184366, -61.122244488977955, -60.721442885771545, -60.32064128256513, -59.91983967935872, -59.519038076152306, -59.11823647294589, -58.71743486973948, -58.31663326653307, -57.91583166332665, -57.51503006012024, -57.11422845691383, -56.71342685370741, -56.312625250501, -55.91182364729459, -55.51102204408817, -55.11022044088176, -54.70941883767535, -54.30861723446893, -53.90781563126252, -53.50701402805611, -53.1062124248497, -52.705410821643284, -52.30460921843687, -51.90380761523046, -51.503006012024045, -51.102204408817634, -50.701402805611224, -50.300601202404806, -49.899799599198396, -49.498997995991985, -49.09819639278557, -48.69739478957916, -48.296593186372746, -47.89579158316633, -47.49498997995992, -47.09418837675351, -46.69338677354709, -46.29258517034068, -45.89178356713427, -45.49098196392785, -45.09018036072144, -44.68937875751503, -44.28857715430861, -43.8877755511022, -43.48697394789579, -43.08617234468938, -42.68537074148296, -42.28456913827655, -41.88376753507014, -41.482965931863724, -41.08216432865731, -40.6813627254509, -40.280561122244485, -39.879759519038075, -39.478957915831664, -39.07815631262525, -38.677354709418836, -38.276553106212425, -37.87575150300601, -37.4749498997996, -37.07414829659319, -36.67334669338677, -36.27254509018036, -35.87174348697394, -35.47094188376754, -35.07014028056112, -34.6693386773547, -34.2685370741483, -33.86773547094188, -33.46693386773546, -33.06613226452906, -32.66533066132264, -32.264529058116224, -31.86372745490982, -31.462925851703403, -31.062124248496986, -30.661322645290582, -30.260521042084164, -29.859719438877747, -29.458917835671343, -29.058116232464926, -28.657314629258508, -28.256513026052104, -27.855711422845687, -27.454909819639283, -27.054108216432866, -26.653306613226448, -26.252505010020045, -25.851703406813627, -25.45090180360721, -25.050100200400806, -24.649298597194388, -24.24849699398797, -23.847695390781567, -23.44689378757515, -23.04609218436873, -22.645290581162328, -22.24448897795591, -21.843687374749493, -21.44288577154309, -21.04208416833667, -20.641282565130254, -20.24048096192385, -19.839679358717433, -19.438877755511015, -19.038076152304612, -18.637274549098194, -18.236472945891776, -17.835671342685373, -17.434869739478955, -17.034068136272538, -16.633266533066134, -16.232464929859717, -15.831663326653299, -15.430861723446895, -15.030060120240478, -14.62925851703406, -14.228456913827657, -13.827655310621239, -13.426853707414821, -13.026052104208418, -12.625250501002, -12.224448897795583, -11.823647294589179, -11.422845691382761, -11.022044088176344, -10.62124248496994, -10.220440881763523, -9.819639278557105, -9.418837675350701, -9.018036072144284, -8.617234468937866, -8.216432865731463, -7.815631262525045, -7.414829659318642, -7.014028056112224, -6.613226452905806, -6.212424849699403, -5.811623246492985, -5.4108216432865675, -5.010020040080164, -4.609218436873746, -4.208416833667329, -3.807615230460925, -3.4068136272545075, -3.00601202404809, -2.6052104208416864, -2.2044088176352687, -1.803607214428851, -1.4028056112224476, -1.00200400801603, -0.6012024048096123, -0.20040080160320883, 0.20040080160320883, 0.6012024048096265, 1.00200400801603, 1.4028056112224476, 1.8036072144288653, 2.2044088176352687, 2.6052104208416864, 3.006012024048104, 3.4068136272545075, 3.807615230460925, 4.208416833667343, 4.609218436873746, 5.010020040080164, 5.410821643286582, 5.811623246492985, 6.212424849699403, 6.6132264529058205, 7.014028056112224, 7.414829659318642, 7.815631262525059, 8.216432865731463, 8.61723446893788, 9.018036072144298, 9.418837675350701, 9.81963927855712, 10.220440881763537, 10.62124248496994, 11.022044088176358, 11.422845691382776, 11.823647294589179, 12.224448897795597, 12.625250501002014, 13.026052104208418, 13.426853707414836, 13.827655310621239, 14.228456913827657, 14.629258517034074, 15.030060120240478, 15.430861723446895, 15.831663326653313, 16.232464929859717, 16.633266533066134, 17.034068136272552, 17.434869739478955, 17.835671342685373, 18.23647294589179, 18.637274549098194, 19.038076152304612, 19.43887775551103, 19.839679358717433, 20.24048096192385, 20.64128256513027, 21.04208416833667, 21.44288577154309, 21.843687374749507, 22.24448897795591, 22.645290581162328, 23.046092184368746, 23.44689378757515, 23.847695390781567, 24.248496993987985, 24.649298597194388, 25.050100200400806, 25.450901803607223, 25.851703406813627, 26.252505010020045, 26.653306613226462, 27.054108216432866, 27.454909819639283, 27.8557114228457, 28.25651302605212, 28.657314629258508, 29.058116232464926, 29.458917835671343, 29.85971943887776, 30.26052104208418, 30.661322645290596, 31.062124248496986, 31.462925851703403, 31.86372745490982, 32.26452905811624, 32.665330661322656, 33.066132264529074, 33.46693386773546, 33.86773547094188, 34.2685370741483, 34.669338677354716, 35.070140280561134, 35.47094188376755, 35.87174348697394, 36.27254509018036, 36.673346693386776, 37.074148296593194, 37.47494989979961, 37.87575150300603, 38.27655310621242, 38.677354709418836, 39.078156312625254, 39.47895791583167, 39.87975951903809, 40.28056112224451, 40.681362725450896, 41.08216432865731, 41.48296593186373, 41.88376753507015, 42.28456913827657, 42.685370741482984, 43.08617234468937, 43.48697394789579, 43.88777555110221, 44.288577154308626, 44.689378757515044, 45.09018036072143, 45.49098196392785, 45.89178356713427, 46.292585170340686, 46.693386773547104, 47.09418837675352, 47.49498997995991, 47.89579158316633, 48.296593186372746, 48.697394789579164, 49.09819639278558, 49.498997995992, 49.89979959919839, 50.300601202404806, 50.701402805611224, 51.10220440881764, 51.50300601202406, 51.90380761523048, 52.304609218436866, 52.705410821643284, 53.1062124248497, 53.50701402805612, 53.90781563126254, 54.308617234468954, 54.709418837675344, 55.11022044088176, 55.51102204408818, 55.9118236472946, 56.312625250501014, 56.71342685370743, 57.11422845691382, 57.51503006012024, 57.91583166332666, 58.316633266533074, 58.71743486973949, 59.11823647294591, 59.5190380761523, 59.91983967935872, 60.320641282565134, 60.72144288577155, 61.12224448897797, 61.52304609218439, 61.923847695390776, 62.324649298597194, 62.72545090180361, 63.12625250501003, 63.52705410821645, 63.927855711422865, 64.32865731462925, 64.72945891783567, 65.13026052104209, 65.5310621242485, 65.93186372745492, 66.33266533066131, 66.73346693386773, 67.13426853707415, 67.53507014028057, 67.93587174348698, 68.3366733466934, 68.73747494989979, 69.13827655310621, 69.53907815631263, 69.93987975951904, 70.34068136272546, 70.74148296593188, 71.14228456913827, 71.54308617234469, 71.9438877755511, 72.34468937875752, 72.74549098196394, 73.14629258517036, 73.54709418837675, 73.94789579158316, 74.34869739478958, 74.749498997996, 75.15030060120242, 75.55110220440883, 75.95190380761522, 76.35270541082164, 76.75350701402806, 77.15430861723448, 77.5551102204409, 77.95591182364731, 78.3567134268537, 78.75751503006012, 79.15831663326654, 79.55911823647295, 79.95991983967937, 80.36072144288579, 80.76152304609218, 81.1623246492986, 81.56312625250501, 81.96392785571143, 82.36472945891785, 82.76553106212427, 83.16633266533066, 83.56713426853707, 83.96793587174349, 84.36873747494991, 84.76953907815633, 85.17034068136272, 85.57114228456913, 85.97194388777555, 86.37274549098197, 86.77354709418839, 87.1743486973948, 87.5751503006012, 87.97595190380761, 88.37675350701403, 88.77755511022045, 89.17835671342687, 89.57915831663328, 89.97995991983967, 90.38076152304609, 90.78156312625251, 91.18236472945893, 91.58316633266534, 91.98396793587176, 92.38476953907815, 92.78557114228457, 93.18637274549098, 93.5871743486974, 93.98797595190382, 94.38877755511024, 94.78957915831663, 95.19038076152304, 95.59118236472946, 95.99198396793588, 96.3927855711423, 96.79358717434872, 97.1943887775551, 97.59519038076152, 97.99599198396794, 98.39679358717436, 98.79759519038078, 99.1983967935872, 99.59919839679358, 100.0], "sigma": [1.0, 1.0180360721442885, 1.0360721442885772, 1.0541082164328657, 1.0721442885771544, 1.0901803607214429, 1.1082164328657313, 1.12625250501002, 1.1442885771543085, 1.1623246492985972, 1.1803607214428857, 1.1983967935871744, 1.216432865731463, 1.2344689378757514, 1.25250501002004, 1.2705410821643286, 1.2885771543086173, 1.3066132264529058, 1.3246492985971945, 1.342685370741483, 1.3607214428857715, 1.3787575150300602, 1.3967935871743486, 1.4148296593186374, 1.4328657314629258, 1.4509018036072145, 1.468937875751503, 1.4869739478957915, 1.5050100200400802, 1.5230460921843687, 1.5410821643286572, 1.559118236472946, 1.5771543086172346, 1.595190380761523, 1.6132264529058116, 1.6312625250501003, 1.6492985971943888, 1.6673346693386772, 1.685370741482966, 1.7034068136272547, 1.7214428857715431, 1.7394789579158316, 1.7575150300601203, 1.7755511022044088, 1.7935871743486973, 1.811623246492986, 1.8296593186372747, 1.8476953907815632, 1.8657314629258517, 1.8837675350701404, 1.9018036072144289, 1.9198396793587174, 1.937875751503006, 1.9559118236472948, 1.9739478957915833, 1.9919839679358717, 2.0100200400801604, 2.0280561122244487, 2.0460921843687374, 2.064128256513026, 2.0821643286573144, 2.1002004008016035, 2.118236472945892, 2.1362725450901805, 2.154308617234469, 2.1723446893787575, 2.190380761523046, 2.208416833667335, 2.226452905811623, 2.244488977955912, 2.2625250501002006, 2.280561122244489, 2.2985971943887775, 2.3166332665330662, 2.3346693386773545, 2.3527054108216436, 2.370741482965932, 2.38877755511022, 2.4068136272545093, 2.4248496993987976, 2.4428857715430863, 2.460921843687375, 2.4789579158316633, 2.496993987975952, 2.5150300601202407, 2.533066132264529, 2.5511022044088176, 2.5691382765531063, 2.5871743486973946, 2.6052104208416837, 2.623246492985972, 2.6412825651302603, 2.6593186372745494, 2.6773547094188377, 2.6953907815631264, 2.713426853707415, 2.7314629258517034, 2.749498997995992, 2.7675350701402808, 2.785571142284569, 2.8036072144288577, 2.8216432865731464, 2.8396793587174347, 2.8577154308617234, 2.875751503006012, 2.8937875751503004, 2.9118236472945895, 2.929859719438878, 2.9478957915831665, 2.965931863727455, 2.9839679358717435, 3.002004008016032, 3.020040080160321, 3.038076152304609, 3.056112224448898, 3.0741482965931866, 3.092184368737475, 3.1102204408817635, 3.1282565130260522, 3.146292585170341, 3.164328657314629, 3.182364729458918, 3.2004008016032066, 3.218436873747495, 3.2364729458917836, 3.2545090180360723, 3.272545090180361, 3.2905811623246493, 3.308617234468938, 3.3266533066132267, 3.344689378757515, 3.3627254509018036, 3.3807615230460923, 3.398797595190381, 3.4168336673346693, 3.434869739478958, 3.4529058116232467, 3.470941883767535, 3.4889779559118237, 3.5070140280561124, 3.525050100200401, 3.5430861723446894, 3.561122244488978, 3.579158316633267, 3.597194388777555, 3.6152304609218437, 3.6332665330661325, 3.651302605210421, 3.6693386773547094, 3.687374749498998, 3.705410821643287, 3.723446893787575, 3.741482965931864, 3.7595190380761525, 3.7775551102204408, 3.7955911823647295, 3.813627254509018, 3.831663326653307, 3.849699398797595, 3.867735470941884, 3.8857715430861726, 3.903807615230461, 3.9218436873747495, 3.9398797595190382, 3.957915831663327, 3.975951903807615, 3.993987975951904, 4.012024048096192, 4.030060120240481, 4.04809619238477, 4.066132264529058, 4.084168336673347, 4.102204408817635, 4.1202404809619235, 4.138276553106213, 4.156312625250501, 4.174348697394789, 4.192384769539078, 4.2104208416833675, 4.228456913827655, 4.246492985971944, 4.264529058116233, 4.2825651302605205, 4.30060120240481, 4.318637274549099, 4.336673346693387, 4.354709418837675, 4.3727454909819645, 4.390781563126253, 4.408817635270541, 4.42685370741483, 4.4448897795591185, 4.462925851703407, 4.480961923847696, 4.498997995991984, 4.517034068136272, 4.5350701402805615, 4.55310621242485, 4.571142284569138, 4.589178356713427, 4.6072144288577155, 4.625250501002004, 4.643286573146293, 4.661322645290581, 4.679358717434869, 4.697394789579159, 4.715430861723447, 4.733466933867735, 4.751503006012024, 4.769539078156313, 4.787575150300601, 4.80561122244489, 4.823647294589179, 4.841683366733466, 4.859719438877756, 4.877755511022045, 4.895791583166333, 4.913827655310621, 4.93186372745491, 4.949899799599199, 4.967935871743487, 4.985971943887776, 5.004008016032064, 5.022044088176353, 5.040080160320642, 5.05811623246493, 5.076152304609218, 5.094188376753507, 5.112224448897796, 5.130260521042084, 5.148296593186373, 5.166332665330661, 5.18436873747495, 5.202404809619239, 5.220440881763527, 5.238476953907816, 5.2565130260521045, 5.274549098196393, 5.292585170340682, 5.31062124248497, 5.328657314629258, 5.3466933867735476, 5.364729458917836, 5.382765531062124, 5.400801603206413, 5.4188376753507015, 5.43687374749499, 5.454909819639279, 5.472945891783567, 5.490981963927856, 5.509018036072145, 5.527054108216433, 5.545090180360722, 5.56312625250501, 5.5811623246492985, 5.599198396793588, 5.617234468937876, 5.635270541082164, 5.653306613226453, 5.671342685370742, 5.68937875751503, 5.707414829659319, 5.725450901803607, 5.7434869739478955, 5.761523046092185, 5.779559118236473, 5.797595190380762, 5.81563126252505, 5.833667334669339, 5.851703406813628, 5.869739478957916, 5.887775551102204, 5.9058116232464934, 5.923847695390782, 5.94188376753507, 5.959919839679359, 5.977955911823647, 5.995991983967936, 6.014028056112225, 6.032064128256513, 6.050100200400802, 6.0681362725450905, 6.086172344689379, 6.104208416833668, 6.122244488977956, 6.140280561122244, 6.158316633266534, 6.176352705410822, 6.19438877755511, 6.212424849699399, 6.2304609218436875, 6.248496993987976, 6.266533066132265, 6.284569138276553, 6.302605210420842, 6.320641282565131, 6.338677354709419, 6.356713426853708, 6.374749498997996, 6.3927855711422845, 6.410821643286574, 6.428857715430862, 6.44689378757515, 6.464929859719439, 6.482965931863728, 6.501002004008016, 6.519038076152305, 6.537074148296593, 6.5551102204408815, 6.573146292585171, 6.591182364729459, 6.609218436873748, 6.627254509018036, 6.645290581162325, 6.663326653306614, 6.681362725450902, 6.69939879759519, 6.7174348697394795, 6.735470941883768, 6.753507014028056, 6.771543086172345, 6.789579158316633, 6.807615230460922, 6.825651302605211, 6.843687374749499, 6.861723446893788, 6.8797595190380765, 6.897795591182365, 6.915831663326654, 6.933867735470942, 6.95190380761523, 6.96993987975952, 6.987975951903808, 7.006012024048096, 7.024048096192385, 7.0420841683366735, 7.060120240480962, 7.078156312625251, 7.096192384769539, 7.114228456913828, 7.132264529058117, 7.150300601202405, 7.168336673346694, 7.186372745490982, 7.2044088176352705, 7.22244488977956, 7.240480961923848, 7.258517034068136, 7.276553106212425, 7.294589178356714, 7.312625250501002, 7.330661322645291, 7.348697394789579, 7.3667334669338675, 7.384769539078157, 7.402805611222445, 7.420841683366734, 7.438877755511022, 7.456913827655311, 7.4749498997996, 7.492985971943888, 7.511022044088176, 7.5290581162324655, 7.547094188376754, 7.565130260521042, 7.583166332665331, 7.601202404809619, 7.619238476953908, 7.637274549098197, 7.655310621242485, 7.673346693386774, 7.6913827655310625, 7.709418837675351, 7.72745490981964, 7.745490981963928, 7.763527054108216, 7.781563126252506, 7.799599198396794, 7.817635270541082, 7.835671342685371, 7.8537074148296595, 7.871743486973948, 7.889779559118237, 7.907815631262525, 7.925851703406813, 7.943887775551103, 7.961923847695391, 7.97995991983968, 7.997995991983968, 8.016032064128257, 8.034068136272545, 8.052104208416834, 8.070140280561123, 8.08817635270541, 8.1062124248497, 8.124248496993989, 8.142284569138276, 8.160320641282565, 8.178356713426854, 8.196392785571142, 8.214428857715431, 8.23246492985972, 8.250501002004007, 8.268537074148297, 8.286573146292586, 8.304609218436873, 8.322645290581162, 8.340681362725451, 8.358717434869739, 8.376753507014028, 8.394789579158317, 8.412825651302605, 8.430861723446894, 8.448897795591183, 8.46693386773547, 8.484969939879761, 8.503006012024048, 8.521042084168336, 8.539078156312627, 8.557114228456914, 8.575150300601202, 8.593186372745492, 8.61122244488978, 8.629258517034067, 8.647294589178358, 8.665330661322646, 8.683366733466933, 8.701402805611224, 8.719438877755511, 8.737474949899799, 8.75551102204409, 8.773547094188377, 8.791583166332666, 8.809619238476955, 8.827655310621243, 8.845691382765532, 8.86372745490982, 8.881763527054108, 8.899799599198397, 8.917835671342687, 8.935871743486974, 8.953907815631263, 8.971943887775552, 8.98997995991984, 9.008016032064129, 9.026052104208418, 9.044088176352705, 9.062124248496994, 9.080160320641284, 9.098196392785571, 9.11623246492986, 9.13426853707415, 9.152304609218437, 9.170340681362726, 9.188376753507015, 9.206412825651302, 9.224448897795591, 9.24248496993988, 9.260521042084168, 9.278557114228457, 9.296593186372746, 9.314629258517034, 9.332665330661323, 9.350701402805612, 9.3687374749499, 9.386773547094188, 9.404809619238478, 9.422845691382767, 9.440881763527054, 9.458917835671343, 9.476953907815632, 9.49498997995992, 9.513026052104209, 9.531062124248498, 9.549098196392785, 9.567134268537075, 9.585170340681364, 9.603206412825651, 9.62124248496994, 9.63927855711423, 9.657314629258517, 9.675350701402806, 9.693386773547095, 9.711422845691382, 9.729458917835672, 9.74749498997996, 9.765531062124248, 9.783567134268537, 9.801603206412826, 9.819639278557114, 9.837675350701403, 9.855711422845692, 9.87374749498998, 9.891783567134269, 9.909819639278558, 9.927855711422845, 9.945891783567134, 9.963927855711423, 9.981963927855713, 10.0], "expected": [0.11685027506808487, 0.1211033264331077, 0.12543240056334448, 0.12983749745879514, 0.13431861711945975, 0.13887575954533823, 0.14350892473643062, 0.14821811269273696, 0.15300332341425718, 0.15786455690099138, 0.16280181315293943, 0.16781509217010143, 0.17290439395247734, 0.1780697185000671, 0.18331106581287085, 0.18862843589088849, 0.19402182873412005, 0.1994912443425655, 0.20503668271622494, 0.21065814385509818, 0.21635562775918535, 0.2221291344284865, 0.22797866386300153, 0.2339042160627305, 0.23990579102767332, 0.24598338875783016, 0.2521370092532008, 0.2583666525137854, 0.26467231853958395, 0.27105400733059637, 0.27751171888682263, 0.28404545320826297, 0.2906552102949172, 0.2973409901467852, 0.3041027927638672, 0.3109406181461632, 0.3178544662936729, 0.32484433720639666, 0.33191023088433436, 0.33905214732748595, 0.3462700865358514, 0.3535640485094308, 0.36093403324822415, 0.3683800407522313, 0.37590207102145246, 0.3835001240558875, 0.39117419985553653, 0.3989242984203994, 0.40675041975047616, 0.41465256384576693, 0.4226307307062715, 0.43068492033199, 0.4388151327229225, 0.4470213678790689, 0.45530362580042916, 0.4636619064870033, 0.4720962099387914, 0.48060653615579335, 0.4891928851380093, 0.4978552568854392, 0.5065936513980829, 0.5154080686759408, 0.5242985087190122, 0.5332649715272978, 0.5423074571007973, 0.5514259654395104, 0.5606204965434377, 0.5698910504125789, 0.5792376270469339, 0.588660226446503, 0.5981588486112859, 0.6077334935412825, 0.6173841612364933, 0.6271108516969179, 0.6369135649225564, 0.6467923009134092, 0.6567470596694754, 0.6667778411907554, 0.67688464547725, 0.687067472528958, 0.69732632234588, 0.707661194928016, 0.7180720902753658, 0.7285590083879296, 0.7391219492657074, 0.7497609129086988, 0.7604758993169044, 0.7712669084903239, 0.7821339404289571, 0.7930769951328047, 0.8040960726018657, 0.8151911728361405, 0.8263622958356299, 0.8376094416003326, 0.8489326101302495, 0.8603318014253805, 0.8718070154857248, 0.8833582523112835, 0.894985511902056, 0.9066887942580422, 0.9184680993792426, 0.930323427265657, 0.9422547779172848, 0.954262151334127, 0.9663455475161831, 0.9785049664634526, 0.9907404081759368, 1.0030518726536344, 1.015439359896546, 1.0279028699046717, 1.040442402678011, 1.0530579582165644, 1.0657495365203318, 1.0785171375893126, 1.091360761423508, 1.1042804080229172, 1.1172760773875396, 1.1303477695173767, 1.1434954844124274, 1.1567192220726923, 1.1700189824981708, 1.1833947656888633, 1.1968465716447698, 1.2103744003658898, 1.2239782518522242, 1.2376581261037725, 1.2514140231205346, 1.2652459429025105, 1.2791538854497004, 1.2931378507621043, 1.3071978388397216, 1.3213338496825535, 1.335545883290599, 1.3498339396638586, 1.364198018802332, 1.3786381207060192, 1.3931542453749206, 1.4077463928090355, 1.4224145630083644, 1.4371587559729075, 1.4519789717026645, 1.4668752101976352, 1.4818474714578198, 1.4968957554832185, 1.512020062273831, 1.5272203918296574, 1.542496744150698, 1.5578491192369524, 1.5732775170884201, 1.5887819377051022, 1.6043623810869985, 1.620018847234108, 1.635751336146432, 1.65155984782397, 1.6674443822667213, 1.6834049394746868, 1.6994415194478665, 1.71555412218626, 1.731742747689867, 1.7480073959586886, 1.7643480669927236, 1.7807647607919725, 1.7972574773564356, 1.8138262166861125, 1.8304709787810034, 1.8471917636411077, 1.8639885712664266, 1.880861401656959, 1.8978102548127058, 1.9148351307336657, 1.9319360294198398, 1.9491129508712286, 1.9663658950878304, 1.9836948620696462, 2.0010998518166767, 2.01858086432892, 2.0361378996063775, 2.05377095764905, 2.071480038456936, 2.0892651420300345, 2.1071262683683485, 2.125063417471876, 2.143076589340616, 2.161165783974572, 2.1793310013737415, 2.1975722415381242, 2.2158895044677207, 2.234282790162532, 2.2527520986225564, 2.271297429847795, 2.289918783838248, 2.308616160593914, 2.3273895601147943, 2.346238982400889, 2.3651644274521972, 2.384165895268719, 2.4032433858504554, 2.4223968991974054, 2.4416264353095682, 2.460931994186947, 2.480313575829538, 2.4997711802373437, 2.519304807410364, 2.538914457348597, 2.558600130052044, 2.5783618255207057, 2.5981995437545806, 2.6181132847536692, 2.638103048517973, 2.6581688350474906, 2.6783106443422198, 2.6985284764021653, 2.7188223312273245, 2.739192208817696, 2.759638109173283, 2.780160032294084, 2.800757978180098, 2.821431946831326, 2.842181938247769, 2.8630079524294243, 2.883909989376294, 2.904888049088379, 2.9259421315656757, 2.9470722368081876, 2.9682783648159132, 2.989560515588853, 3.0109186891270054, 3.032352885430374, 3.053863104498955, 3.0754493463327495, 3.0971116109317594, 3.118849898295982, 3.1406642084254184, 3.1625545413200697, 3.1845208969799343, 3.206563275405014, 3.228681676595306, 3.2508761005508124, 3.273146547271533, 3.2954930167574674, 3.3179155090086154, 3.340414024024978, 3.362988561806554, 3.385639122353343, 3.408365705665348, 3.431168311742565, 3.4540469405849965, 3.4770015921926434, 3.500032266565502, 3.5231389637035764, 3.546321683606863, 3.569580426275364, 3.59291519170908, 3.6163259799080087, 3.639812790872152, 3.663375624601509, 3.68701448109608, 3.7107293603558635, 3.7345202623808635, 3.7583871871710754, 3.7823301347265015, 3.806349105047143, 3.830444098132997, 3.8546151139840648, 3.8788621526003473, 3.9031852139818435, 3.927584298128554, 3.9520594050404774, 3.976610534717615, 4.001237687159967, 4.025940862367532, 4.0507200603403115, 4.075575281078306, 4.1005065245815135, 4.125513790849934, 4.15059707988357, 4.175756391682419, 4.200991726246481, 4.2263030835757585, 4.25169046367025, 4.2771538665299556, 4.302693292154873, 4.328308740545006, 4.3540002117003525, 4.379767705620913, 4.405611222306686, 4.431530761757676, 4.457526323973878, 4.483597908955293, 4.5097455167019245, 4.535969147213767, 4.562268800490825, 4.588644476533098, 4.615096175340582, 4.641623896913283, 4.668227641251196, 4.694907408354323, 4.721663198222665, 4.74849501085622, 4.775402846254989, 4.802386704418972, 4.82944658534817, 4.856582489042579, 4.883794415502205, 4.911082364727044, 4.938446336717096, 4.965886331472364, 4.993402348992843, 5.020994389278537, 5.048662452329446, 5.076406538145568, 5.104226646726905, 5.132122778073454, 5.160094932185218, 5.188143109062197, 5.2162673087043885, 5.244467531111793, 5.272743776284414, 5.3010960442222474, 5.329524334925294, 5.358028648393557, 5.38660898462703, 5.41526534362572, 5.4439977253896235, 5.47280612991874, 5.501690557213072, 5.530651007272616, 5.559687480097375, 5.588799975687348, 5.617988494042534, 5.647253035162934, 5.676593599048549, 5.706010185699378, 5.735502795115418, 5.765071427296676, 5.794716082243145, 5.824436759954829, 5.854233460431727, 5.884106183673839, 5.914054929681166, 5.944079698453704, 5.974180489991458, 6.004357304294426, 6.034610141362607, 6.064939001196002, 6.0953438837946115, 6.125824789158434, 6.156381717287471, 6.187014668181723, 6.217723641841187, 6.248508638265865, 6.279369657455759, 6.310306699410865, 6.341319764131185, 6.37240885161672, 6.403573961867468, 6.434815094883431, 6.466132250664607, 6.497525429210997, 6.528994630522601, 6.560539854599419, 6.59216110144145, 6.623858371048697, 6.655631663421156, 6.6874809785588285, 6.7194063164617175, 6.751407677129818, 6.783485060563133, 6.815638466761663, 6.847867895725406, 6.880173347454363, 6.912554821948534, 6.945012319207919, 6.977545839232518, 7.01015538202233, 7.042840947577356, 7.075602535897598, 7.108440146983052, 7.14135378083372, 7.174343437449603, 7.207409116830698, 7.240550818977008, 7.273768543888533, 7.307062291565271, 7.340432062007222, 7.373877855214388, 7.407399671186768, 7.440997509924362, 7.474671371427169, 7.5084212556951915, 7.542247162728424, 7.576149092526875, 7.610127045090539, 7.644181020419414, 7.678311018513505, 7.712517039372812, 7.746799082997329, 7.781157149387062, 7.8155912385420105, 7.850101350462168, 7.884687485147544, 7.919349642598133, 7.954087822813933, 7.988902025794951, 8.023792251541181, 8.058758500052624, 8.093800771329283, 8.128919065371155, 8.16411338217824, 8.19938372175054, 8.234730084088055, 8.27015246919078, 8.305650877058723, 8.341225307691879, 8.376875761090245, 8.412602237253832, 8.448404736182628, 8.484283257876637, 8.520237802335865, 8.556268369560303, 8.592374959549952, 8.628557572304823, 8.664816207824902, 8.701150866110194, 8.737561547160707, 8.774048250976428, 8.810610977557362, 8.847249726903515, 8.883964499014878, 8.920755293891453, 8.957622111533249, 8.994564951940252, 9.031583815112475, 9.068678701049908, 9.105849609752553, 9.143096541220418, 9.180419495453494, 9.21781847245178, 9.255293472215284, 9.292844494744003, 9.33047154003793, 9.368174608097076, 9.405953698921438, 9.443808812511007, 9.481739948865794, 9.519747107985797, 9.55783028987101, 9.595989494521438, 9.634224721937082, 9.672535972117936, 9.710923245064008, 9.749386540775292, 9.787925859251787, 9.826541200493502, 9.865232564500428, 9.903999951272564, 9.94284336080992, 9.98176279311249, 10.020758248180266, 10.059829726013263, 10.098977226611476, 10.138200749974894, 10.177500296103533, 10.216875864997386, 10.256327456656448, 10.295855071080728, 10.33545870827022, 10.375138368224931, 10.414894050944849, 10.454725756429983, 10.494633484680334, 10.534617235695894, 10.57467700947667, 10.61481280602266, 10.655024625333864, 10.695312467410282, 10.735676332251915, 10.77611621985876, 10.81663213023082, 10.857224063368095, 10.89789201927058, 10.938635997938283, 10.979455999371199, 11.020352023569325, 11.06132407053267, 11.10237214026123, 11.143496232754996, 11.184696348013984, 11.225972486038184, 11.267324646827593, 11.30875283038222, 11.350257036702065, 11.391837265787116, 11.433493517637384, 11.47522579225287, 11.517034089633562, 11.558918409779473, 11.600878752690598, 11.64291511836694, 11.685027506808488]} diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_small_sigma.json b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_small_sigma.json deleted file mode 100644 index 194639e054a7..000000000000 --- a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/large_mu_small_sigma.json +++ /dev/null @@ -1 +0,0 @@ -{"mu": [-100.0, -99.59919839679358, -99.19839679358718, -98.79759519038076, -98.39679358717434, -97.99599198396794, -97.59519038076152, -97.1943887775551, -96.7935871743487, -96.39278557114228, -95.99198396793587, -95.59118236472946, -95.19038076152304, -94.78957915831663, -94.38877755511022, -93.9879759519038, -93.58717434869739, -93.18637274549098, -92.78557114228457, -92.38476953907815, -91.98396793587175, -91.58316633266533, -91.18236472945893, -90.78156312625251, -90.38076152304609, -89.97995991983967, -89.57915831663327, -89.17835671342685, -88.77755511022045, -88.37675350701403, -87.97595190380761, -87.5751503006012, -87.17434869739479, -86.77354709418837, -86.37274549098197, -85.97194388777555, -85.57114228456913, -85.17034068136273, -84.76953907815631, -84.3687374749499, -83.96793587174349, -83.56713426853707, -83.16633266533066, -82.76553106212424, -82.36472945891784, -81.96392785571142, -81.56312625250501, -81.1623246492986, -80.76152304609218, -80.36072144288578, -79.95991983967936, -79.55911823647294, -79.15831663326654, -78.75751503006012, -78.3567134268537, -77.9559118236473, -77.55511022044088, -77.15430861723446, -76.75350701402806, -76.35270541082164, -75.95190380761522, -75.55110220440882, -75.1503006012024, -74.749498997996, -74.34869739478958, -73.94789579158316, -73.54709418837675, -73.14629258517034, -72.74549098196393, -72.34468937875752, -71.9438877755511, -71.54308617234469, -71.14228456913827, -70.74148296593187, -70.34068136272545, -69.93987975951904, -69.53907815631263, -69.13827655310621, -68.73747494989979, -68.33667334669339, -67.93587174348697, -67.53507014028057, -67.13426853707415, -66.73346693386773, -66.33266533066131, -65.93186372745491, -65.53106212424849, -65.13026052104209, -64.72945891783567, -64.32865731462925, -63.92785571142284, -63.52705410821643, -63.12625250501002, -62.725450901803605, -62.324649298597194, -61.92384769539078, -61.523046092184366, -61.122244488977955, -60.721442885771545, -60.32064128256513, -59.91983967935872, -59.519038076152306, -59.11823647294589, -58.71743486973948, -58.31663326653307, -57.91583166332665, -57.51503006012024, -57.11422845691383, -56.71342685370741, -56.312625250501, -55.91182364729459, -55.51102204408817, -55.11022044088176, -54.70941883767535, -54.30861723446893, -53.90781563126252, -53.50701402805611, -53.1062124248497, -52.705410821643284, -52.30460921843687, -51.90380761523046, -51.503006012024045, -51.102204408817634, -50.701402805611224, -50.300601202404806, -49.899799599198396, -49.498997995991985, -49.09819639278557, -48.69739478957916, -48.296593186372746, -47.89579158316633, -47.49498997995992, -47.09418837675351, -46.69338677354709, -46.29258517034068, -45.89178356713427, -45.49098196392785, -45.09018036072144, -44.68937875751503, -44.28857715430861, -43.8877755511022, -43.48697394789579, -43.08617234468938, -42.68537074148296, -42.28456913827655, -41.88376753507014, -41.482965931863724, -41.08216432865731, -40.6813627254509, -40.280561122244485, -39.879759519038075, -39.478957915831664, -39.07815631262525, -38.677354709418836, -38.276553106212425, -37.87575150300601, -37.4749498997996, -37.07414829659319, -36.67334669338677, -36.27254509018036, -35.87174348697394, -35.47094188376754, -35.07014028056112, -34.6693386773547, -34.2685370741483, -33.86773547094188, -33.46693386773546, -33.06613226452906, -32.66533066132264, -32.264529058116224, -31.86372745490982, -31.462925851703403, -31.062124248496986, -30.661322645290582, -30.260521042084164, -29.859719438877747, -29.458917835671343, -29.058116232464926, -28.657314629258508, -28.256513026052104, -27.855711422845687, -27.454909819639283, -27.054108216432866, -26.653306613226448, -26.252505010020045, -25.851703406813627, -25.45090180360721, -25.050100200400806, -24.649298597194388, -24.24849699398797, -23.847695390781567, -23.44689378757515, -23.04609218436873, -22.645290581162328, -22.24448897795591, -21.843687374749493, -21.44288577154309, -21.04208416833667, -20.641282565130254, -20.24048096192385, -19.839679358717433, -19.438877755511015, -19.038076152304612, -18.637274549098194, -18.236472945891776, -17.835671342685373, -17.434869739478955, -17.034068136272538, -16.633266533066134, -16.232464929859717, -15.831663326653299, -15.430861723446895, -15.030060120240478, -14.62925851703406, -14.228456913827657, -13.827655310621239, -13.426853707414821, -13.026052104208418, -12.625250501002, -12.224448897795583, -11.823647294589179, -11.422845691382761, -11.022044088176344, -10.62124248496994, -10.220440881763523, -9.819639278557105, -9.418837675350701, -9.018036072144284, -8.617234468937866, -8.216432865731463, -7.815631262525045, -7.414829659318642, -7.014028056112224, -6.613226452905806, -6.212424849699403, -5.811623246492985, -5.4108216432865675, -5.010020040080164, -4.609218436873746, -4.208416833667329, -3.807615230460925, -3.4068136272545075, -3.00601202404809, -2.6052104208416864, -2.2044088176352687, -1.803607214428851, -1.4028056112224476, -1.00200400801603, -0.6012024048096123, -0.20040080160320883, 0.20040080160320883, 0.6012024048096265, 1.00200400801603, 1.4028056112224476, 1.8036072144288653, 2.2044088176352687, 2.6052104208416864, 3.006012024048104, 3.4068136272545075, 3.807615230460925, 4.208416833667343, 4.609218436873746, 5.010020040080164, 5.410821643286582, 5.811623246492985, 6.212424849699403, 6.6132264529058205, 7.014028056112224, 7.414829659318642, 7.815631262525059, 8.216432865731463, 8.61723446893788, 9.018036072144298, 9.418837675350701, 9.81963927855712, 10.220440881763537, 10.62124248496994, 11.022044088176358, 11.422845691382776, 11.823647294589179, 12.224448897795597, 12.625250501002014, 13.026052104208418, 13.426853707414836, 13.827655310621239, 14.228456913827657, 14.629258517034074, 15.030060120240478, 15.430861723446895, 15.831663326653313, 16.232464929859717, 16.633266533066134, 17.034068136272552, 17.434869739478955, 17.835671342685373, 18.23647294589179, 18.637274549098194, 19.038076152304612, 19.43887775551103, 19.839679358717433, 20.24048096192385, 20.64128256513027, 21.04208416833667, 21.44288577154309, 21.843687374749507, 22.24448897795591, 22.645290581162328, 23.046092184368746, 23.44689378757515, 23.847695390781567, 24.248496993987985, 24.649298597194388, 25.050100200400806, 25.450901803607223, 25.851703406813627, 26.252505010020045, 26.653306613226462, 27.054108216432866, 27.454909819639283, 27.8557114228457, 28.25651302605212, 28.657314629258508, 29.058116232464926, 29.458917835671343, 29.85971943887776, 30.26052104208418, 30.661322645290596, 31.062124248496986, 31.462925851703403, 31.86372745490982, 32.26452905811624, 32.665330661322656, 33.066132264529074, 33.46693386773546, 33.86773547094188, 34.2685370741483, 34.669338677354716, 35.070140280561134, 35.47094188376755, 35.87174348697394, 36.27254509018036, 36.673346693386776, 37.074148296593194, 37.47494989979961, 37.87575150300603, 38.27655310621242, 38.677354709418836, 39.078156312625254, 39.47895791583167, 39.87975951903809, 40.28056112224451, 40.681362725450896, 41.08216432865731, 41.48296593186373, 41.88376753507015, 42.28456913827657, 42.685370741482984, 43.08617234468937, 43.48697394789579, 43.88777555110221, 44.288577154308626, 44.689378757515044, 45.09018036072143, 45.49098196392785, 45.89178356713427, 46.292585170340686, 46.693386773547104, 47.09418837675352, 47.49498997995991, 47.89579158316633, 48.296593186372746, 48.697394789579164, 49.09819639278558, 49.498997995992, 49.89979959919839, 50.300601202404806, 50.701402805611224, 51.10220440881764, 51.50300601202406, 51.90380761523048, 52.304609218436866, 52.705410821643284, 53.1062124248497, 53.50701402805612, 53.90781563126254, 54.308617234468954, 54.709418837675344, 55.11022044088176, 55.51102204408818, 55.9118236472946, 56.312625250501014, 56.71342685370743, 57.11422845691382, 57.51503006012024, 57.91583166332666, 58.316633266533074, 58.71743486973949, 59.11823647294591, 59.5190380761523, 59.91983967935872, 60.320641282565134, 60.72144288577155, 61.12224448897797, 61.52304609218439, 61.923847695390776, 62.324649298597194, 62.72545090180361, 63.12625250501003, 63.52705410821645, 63.927855711422865, 64.32865731462925, 64.72945891783567, 65.13026052104209, 65.5310621242485, 65.93186372745492, 66.33266533066131, 66.73346693386773, 67.13426853707415, 67.53507014028057, 67.93587174348698, 68.3366733466934, 68.73747494989979, 69.13827655310621, 69.53907815631263, 69.93987975951904, 70.34068136272546, 70.74148296593188, 71.14228456913827, 71.54308617234469, 71.9438877755511, 72.34468937875752, 72.74549098196394, 73.14629258517036, 73.54709418837675, 73.94789579158316, 74.34869739478958, 74.749498997996, 75.15030060120242, 75.55110220440883, 75.95190380761522, 76.35270541082164, 76.75350701402806, 77.15430861723448, 77.5551102204409, 77.95591182364731, 78.3567134268537, 78.75751503006012, 79.15831663326654, 79.55911823647295, 79.95991983967937, 80.36072144288579, 80.76152304609218, 81.1623246492986, 81.56312625250501, 81.96392785571143, 82.36472945891785, 82.76553106212427, 83.16633266533066, 83.56713426853707, 83.96793587174349, 84.36873747494991, 84.76953907815633, 85.17034068136272, 85.57114228456913, 85.97194388777555, 86.37274549098197, 86.77354709418839, 87.1743486973948, 87.5751503006012, 87.97595190380761, 88.37675350701403, 88.77755511022045, 89.17835671342687, 89.57915831663328, 89.97995991983967, 90.38076152304609, 90.78156312625251, 91.18236472945893, 91.58316633266534, 91.98396793587176, 92.38476953907815, 92.78557114228457, 93.18637274549098, 93.5871743486974, 93.98797595190382, 94.38877755511024, 94.78957915831663, 95.19038076152304, 95.59118236472946, 95.99198396793588, 96.3927855711423, 96.79358717434872, 97.1943887775551, 97.59519038076152, 97.99599198396794, 98.39679358717436, 98.79759519038078, 99.1983967935872, 99.59919839679358, 100.0], "sigma": [0.1, 0.10180360721442887, 0.10360721442885772, 0.10541082164328658, 0.10721442885771544, 0.10901803607214429, 0.11082164328657315, 0.11262525050100201, 0.11442885771543086, 0.11623246492985972, 0.11803607214428859, 0.11983967935871745, 0.1216432865731463, 0.12344689378757516, 0.12525050100200402, 0.12705410821643287, 0.12885771543086172, 0.1306613226452906, 0.13246492985971944, 0.13426853707414832, 0.13607214428857717, 0.13787575150300602, 0.13967935871743486, 0.14148296593186374, 0.1432865731462926, 0.14509018036072147, 0.14689378757515031, 0.14869739478957916, 0.150501002004008, 0.1523046092184369, 0.15410821643286574, 0.1559118236472946, 0.15771543086172346, 0.1595190380761523, 0.16132264529058116, 0.16312625250501003, 0.16492985971943888, 0.16673346693386776, 0.1685370741482966, 0.17034068136272545, 0.1721442885771543, 0.17394789579158318, 0.17575150300601203, 0.1775551102204409, 0.17935871743486975, 0.1811623246492986, 0.18296593186372745, 0.18476953907815633, 0.18657314629258517, 0.18837675350701405, 0.1901803607214429, 0.19198396793587175, 0.1937875751503006, 0.19559118236472947, 0.19739478957915832, 0.1991983967935872, 0.20100200400801604, 0.2028056112224449, 0.20460921843687374, 0.20641282565130262, 0.20821643286573147, 0.21002004008016034, 0.2118236472945892, 0.21362725450901804, 0.2154308617234469, 0.21723446893787576, 0.2190380761523046, 0.2208416833667335, 0.22264529058116234, 0.22444889779559118, 0.22625250501002006, 0.2280561122244489, 0.22985971943887776, 0.23166332665330663, 0.23346693386773548, 0.23527054108216433, 0.2370741482965932, 0.23887775551102206, 0.2406813627254509, 0.24248496993987978, 0.24428857715430863, 0.24609218436873748, 0.24789579158316635, 0.2496993987975952, 0.251503006012024, 0.2533066132264529, 0.2551102204408818, 0.2569138276553106, 0.2587174348697395, 0.2605210420841684, 0.2623246492985972, 0.26412825651302607, 0.2659318637274549, 0.26773547094188377, 0.2695390781563126, 0.27134268537074147, 0.2731462925851703, 0.2749498997995992, 0.27675350701402807, 0.2785571142284569, 0.2803607214428858, 0.28216432865731467, 0.2839679358717435, 0.28577154308617236, 0.2875751503006012, 0.28937875751503006, 0.2911823647294589, 0.29298597194388776, 0.2947895791583166, 0.2965931863727455, 0.29839679358717436, 0.3002004008016032, 0.3020040080160321, 0.30380761523046096, 0.3056112224448898, 0.30741482965931866, 0.3092184368737475, 0.31102204408817635, 0.3128256513026052, 0.31462925851703405, 0.3164328657314629, 0.3182364729458918, 0.32004008016032065, 0.3218436873747495, 0.3236472945891784, 0.32545090180360725, 0.3272545090180361, 0.32905811623246495, 0.3308617234468938, 0.33266533066132264, 0.3344689378757515, 0.33627254509018034, 0.3380761523046092, 0.3398797595190381, 0.34168336673346694, 0.3434869739478958, 0.3452905811623247, 0.34709418837675354, 0.3488977955911824, 0.35070140280561124, 0.3525050100200401, 0.35430861723446894, 0.3561122244488978, 0.35791583166332663, 0.3597194388777555, 0.36152304609218433, 0.3633266533066133, 0.36513026052104214, 0.366933867735471, 0.36873747494989983, 0.3705410821643287, 0.37234468937875753, 0.3741482965931864, 0.37595190380761523, 0.3777555110220441, 0.3795591182364729, 0.3813627254509018, 0.3831663326653306, 0.3849699398797596, 0.38677354709418843, 0.3885771543086173, 0.3903807615230461, 0.392184368737475, 0.3939879759519038, 0.39579158316633267, 0.3975951903807615, 0.39939879759519037, 0.4012024048096192, 0.40300601202404807, 0.4048096192384769, 0.4066132264529059, 0.4084168336673347, 0.41022044088176357, 0.4120240480961924, 0.41382765531062127, 0.4156312625250501, 0.41743486973947896, 0.4192384769539078, 0.42104208416833666, 0.4228456913827655, 0.42464929859719436, 0.4264529058116232, 0.42825651302605217, 0.430060120240481, 0.43186372745490986, 0.4336673346693387, 0.43547094188376756, 0.4372745490981964, 0.43907815631262526, 0.4408817635270541, 0.44268537074148295, 0.4444889779559118, 0.44629258517034065, 0.4480961923847695, 0.44989979959919846, 0.4517034068136273, 0.45350701402805615, 0.455310621242485, 0.45711422845691385, 0.4589178356713427, 0.46072144288577155, 0.4625250501002004, 0.46432865731462925, 0.4661322645290581, 0.46793587174348694, 0.4697394789579158, 0.47154308617234475, 0.4733466933867736, 0.47515030060120245, 0.4769539078156313, 0.47875751503006014, 0.480561122244489, 0.48236472945891784, 0.4841683366733467, 0.48597194388777554, 0.4877755511022044, 0.48957915831663323, 0.4913827655310621, 0.49318637274549104, 0.4949899799599199, 0.49679358717434874, 0.4985971943887776, 0.5004008016032064, 0.5022044088176353, 0.5040080160320641, 0.505811623246493, 0.5076152304609218, 0.5094188376753507, 0.5112224448897795, 0.5130260521042084, 0.5148296593186373, 0.5166332665330662, 0.518436873747495, 0.5202404809619239, 0.5220440881763527, 0.5238476953907816, 0.5256513026052104, 0.5274549098196393, 0.5292585170340681, 0.531062124248497, 0.5328657314629258, 0.5346693386773547, 0.5364729458917836, 0.5382765531062125, 0.5400801603206413, 0.5418837675350702, 0.543687374749499, 0.5454909819639279, 0.5472945891783567, 0.5490981963927856, 0.5509018036072144, 0.5527054108216433, 0.5545090180360721, 0.556312625250501, 0.5581162324649299, 0.5599198396793588, 0.5617234468937876, 0.5635270541082165, 0.5653306613226453, 0.5671342685370742, 0.568937875751503, 0.5707414829659319, 0.5725450901803607, 0.5743486973947896, 0.5761523046092184, 0.5779559118236474, 0.5797595190380762, 0.5815631262525051, 0.5833667334669339, 0.5851703406813628, 0.5869739478957916, 0.5887775551102205, 0.5905811623246493, 0.5923847695390781, 0.594188376753507, 0.5959919839679358, 0.5977955911823647, 0.5995991983967937, 0.6014028056112224, 0.6032064128256512, 0.6050100200400802, 0.606813627254509, 0.6086172344689379, 0.6104208416833667, 0.6122244488977956, 0.6140280561122244, 0.6158316633266533, 0.6176352705410821, 0.619438877755511, 0.6212424849699398, 0.6230460921843687, 0.6248496993987975, 0.6266533066132265, 0.6284569138276553, 0.6302605210420842, 0.632064128256513, 0.6338677354709419, 0.6356713426853707, 0.6374749498997996, 0.6392785571142284, 0.6410821643286573, 0.6428857715430861, 0.644689378757515, 0.6464929859719438, 0.6482965931863728, 0.6501002004008016, 0.6519038076152305, 0.6537074148296593, 0.6555110220440882, 0.657314629258517, 0.6591182364729459, 0.6609218436873747, 0.6627254509018036, 0.6645290581162324, 0.6663326653306613, 0.6681362725450901, 0.6699398797595191, 0.6717434869739479, 0.6735470941883768, 0.6753507014028056, 0.6771543086172345, 0.6789579158316633, 0.6807615230460922, 0.682565130260521, 0.6843687374749499, 0.6861723446893787, 0.6879759519038076, 0.6897795591182364, 0.6915831663326654, 0.6933867735470942, 0.6951903807615231, 0.6969939879759519, 0.6987975951903808, 0.7006012024048096, 0.7024048096192385, 0.7042084168336673, 0.7060120240480962, 0.707815631262525, 0.7096192384769539, 0.7114228456913827, 0.7132264529058117, 0.7150300601202405, 0.7168336673346694, 0.7186372745490982, 0.720440881763527, 0.7222444889779559, 0.7240480961923847, 0.7258517034068136, 0.7276553106212424, 0.7294589178356713, 0.7312625250501001, 0.733066132264529, 0.734869739478958, 0.7366733466933868, 0.7384769539078156, 0.7402805611222445, 0.7420841683366733, 0.7438877755511022, 0.745691382765531, 0.7474949899799599, 0.7492985971943887, 0.7511022044088176, 0.7529058116232464, 0.7547094188376753, 0.7565130260521042, 0.7583166332665331, 0.7601202404809619, 0.7619238476953908, 0.7637274549098196, 0.7655310621242485, 0.7673346693386773, 0.7691382765531062, 0.770941883767535, 0.7727454909819639, 0.7745490981963927, 0.7763527054108216, 0.7781563126252505, 0.7799599198396794, 0.7817635270541082, 0.7835671342685371, 0.7853707414829659, 0.7871743486973948, 0.7889779559118236, 0.7907815631262525, 0.7925851703406813, 0.7943887775551102, 0.796192384769539, 0.797995991983968, 0.7997995991983968, 0.8016032064128257, 0.8034068136272545, 0.8052104208416834, 0.8070140280561122, 0.8088176352705411, 0.8106212424849699, 0.8124248496993988, 0.8142284569138276, 0.8160320641282565, 0.8178356713426853, 0.8196392785571143, 0.8214428857715431, 0.823246492985972, 0.8250501002004008, 0.8268537074148297, 0.8286573146292585, 0.8304609218436874, 0.8322645290581162, 0.8340681362725451, 0.8358717434869739, 0.8376753507014028, 0.8394789579158316, 0.8412825651302606, 0.8430861723446894, 0.8448897795591183, 0.8466933867735471, 0.848496993987976, 0.8503006012024048, 0.8521042084168337, 0.8539078156312625, 0.8557114228456913, 0.8575150300601202, 0.859318637274549, 0.8611222444889779, 0.8629258517034069, 0.8647294589178357, 0.8665330661322646, 0.8683366733466934, 0.8701402805611222, 0.8719438877755511, 0.87374749498998, 0.8755511022044088, 0.8773547094188376, 0.8791583166332665, 0.8809619238476953, 0.8827655310621242, 0.8845691382765531, 0.886372745490982, 0.8881763527054108, 0.8899799599198397, 0.8917835671342685, 0.8935871743486974, 0.8953907815631262, 0.8971943887775551, 0.8989979959919839, 0.9008016032064128, 0.9026052104208416, 0.9044088176352705, 0.9062124248496994, 0.9080160320641283, 0.9098196392785571, 0.911623246492986, 0.9134268537074148, 0.9152304609218437, 0.9170340681362725, 0.9188376753507014, 0.9206412825651302, 0.9224448897795591, 0.9242484969939879, 0.9260521042084168, 0.9278557114228457, 0.9296593186372746, 0.9314629258517034, 0.9332665330661323, 0.9350701402805611, 0.93687374749499, 0.9386773547094188, 0.9404809619238477, 0.9422845691382765, 0.9440881763527054, 0.9458917835671342, 0.9476953907815631, 0.949498997995992, 0.9513026052104209, 0.9531062124248497, 0.9549098196392786, 0.9567134268537074, 0.9585170340681363, 0.9603206412825651, 0.962124248496994, 0.9639278557114228, 0.9657314629258517, 0.9675350701402805, 0.9693386773547094, 0.9711422845691383, 0.9729458917835672, 0.974749498997996, 0.9765531062124249, 0.9783567134268537, 0.9801603206412826, 0.9819639278557114, 0.9837675350701403, 0.9855711422845691, 0.987374749498998, 0.9891783567134268, 0.9909819639278556, 0.9927855711422846, 0.9945891783567135, 0.9963927855711423, 0.9981963927855712, 1.0], "expected": [0.001168502750680849, 0.0012110332643310775, 0.001254324005633445, 0.0012983749745879517, 0.0013431861711945977, 0.0013887575954533824, 0.0014350892473643066, 0.00148218112692737, 0.0015300332341425722, 0.0015786455690099139, 0.0016280181315293948, 0.0016781509217010146, 0.0017290439395247733, 0.0017806971850006716, 0.0018331106581287089, 0.0018862843589088848, 0.0019402182873412002, 0.0019949124434256553, 0.002050366827162249, 0.002106581438550982, 0.002163556277591854, 0.002221291344284865, 0.0022797866386300154, 0.0023390421606273052, 0.0023990579102767338, 0.002459833887578302, 0.0025213700925320087, 0.0025836665251378543, 0.0026467231853958394, 0.002710540073305964, 0.0027751171888682267, 0.0028404545320826306, 0.0029065521029491715, 0.0029734099014678524, 0.003041027927638672, 0.003109406181461632, 0.0031785446629367295, 0.0032484433720639675, 0.003319102308843344, 0.003390521473274859, 0.003462700865358514, 0.0035356404850943085, 0.0036093403324822413, 0.003683800407522314, 0.0037590207102145253, 0.003835001240558875, 0.003911741998555365, 0.003989242984203994, 0.004067504197504761, 0.004146525638457669, 0.004226307307062715, 0.004306849203319901, 0.0043881513272292245, 0.004470213678790689, 0.004553036258004291, 0.0046366190648700345, 0.004720962099387914, 0.004806065361557934, 0.004891928851380093, 0.004978552568854392, 0.00506593651398083, 0.005154080686759407, 0.005242985087190123, 0.005332649715272977, 0.005423074571007971, 0.005514259654395105, 0.005606204965434377, 0.0056989105041257895, 0.00579237627046934, 0.005886602264465029, 0.005981588486112859, 0.006077334935412826, 0.006173841612364933, 0.006271108516969181, 0.006369135649225565, 0.006467923009134091, 0.006567470596694755, 0.006667778411907557, 0.0067688464547724985, 0.00687067472528958, 0.006973263223458801, 0.00707661194928016, 0.00718072090275366, 0.0072855900838792965, 0.0073912194926570715, 0.00749760912908699, 0.007604758993169044, 0.007712669084903238, 0.007821339404289574, 0.007930769951328047, 0.008040960726018658, 0.008151911728361409, 0.008263622958356297, 0.008376094416003326, 0.008489326101302494, 0.008603318014253802, 0.008718070154857246, 0.008833582523112836, 0.00894985511902056, 0.009066887942580424, 0.00918468099379243, 0.009303234272656571, 0.009422547779172851, 0.00954262151334127, 0.00966345547516183, 0.009785049664634528, 0.009907404081759367, 0.010030518726536342, 0.010154393598965458, 0.010279028699046717, 0.010404424026780112, 0.010530579582165642, 0.010657495365203318, 0.01078517137589313, 0.01091360761423508, 0.01104280408022917, 0.0111727607738754, 0.011303477695173767, 0.011434954844124273, 0.01156719222072692, 0.011700189824981706, 0.011833947656888635, 0.011968465716447696, 0.0121037440036589, 0.012239782518522245, 0.012376581261037726, 0.012514140231205347, 0.012652459429025105, 0.012791538854497004, 0.01293137850762104, 0.013071978388397217, 0.013213338496825534, 0.01335545883290599, 0.013498339396638586, 0.013641980188023319, 0.013786381207060192, 0.013931542453749206, 0.014077463928090358, 0.014224145630083647, 0.014371587559729077, 0.014519789717026643, 0.014668752101976351, 0.014818474714578197, 0.014968957554832182, 0.015120200622738306, 0.01527220391829657, 0.015424967441506983, 0.015578491192369523, 0.015732775170884204, 0.015887819377051027, 0.016043623810869982, 0.01620018847234108, 0.01635751336146432, 0.016515598478239697, 0.016674443822667213, 0.016834049394746867, 0.01699441519447866, 0.017155541221862594, 0.017317427476898677, 0.017480073959586888, 0.017643480669927238, 0.017807647607919728, 0.017972574773564357, 0.018138262166861124, 0.01830470978781003, 0.018471917636411078, 0.018639885712664263, 0.018808614016569587, 0.018978102548127054, 0.019148351307336654, 0.019319360294198406, 0.01949112950871229, 0.019663658950878307, 0.019836948620696467, 0.020010998518166765, 0.020185808643289206, 0.02036137899606378, 0.020537709576490495, 0.02071480038456935, 0.020892651420300345, 0.021071262683683478, 0.02125063417471875, 0.021430765893406173, 0.021611657839745724, 0.021793310013737414, 0.021975722415381243, 0.02215889504467721, 0.022342827901625315, 0.022527520986225565, 0.02271297429847795, 0.022899187838382472, 0.023086161605939137, 0.02327389560114794, 0.023462389824008882, 0.023651644274521974, 0.023841658952687195, 0.024032433858504555, 0.02422396899197405, 0.02441626435309569, 0.02460931994186947, 0.024803135758295385, 0.024997711802373437, 0.025193048074103632, 0.025389144573485966, 0.02558600130052044, 0.025783618255207048, 0.025981995437545813, 0.026181132847536703, 0.02638103048517973, 0.026581688350474898, 0.026783106443422206, 0.026985284764021653, 0.02718822331227324, 0.027391922088176965, 0.02759638109173283, 0.027801600322940833, 0.028007579781800972, 0.028214319468313254, 0.02842181938247769, 0.028630079524294246, 0.028839099893762946, 0.029048880490883784, 0.029259421315656762, 0.029470722368081875, 0.02968278364815913, 0.029895605155888526, 0.03010918689127006, 0.03032352885430373, 0.030538631044989543, 0.030754493463327495, 0.030971116109317597, 0.031188498982959827, 0.03140664208425419, 0.0316255454132007, 0.031845208969799345, 0.03206563275405013, 0.03228681676595306, 0.03250876100550812, 0.032731465472715326, 0.03295493016757467, 0.03317915509008615, 0.03340414024024976, 0.03362988561806555, 0.033856391223533434, 0.03408365705665348, 0.034311683117425655, 0.03454046940584997, 0.034770015921926425, 0.035000322665655025, 0.03523138963703576, 0.03546321683606862, 0.035695804262753636, 0.035929151917090785, 0.036163259799080076, 0.036398127908721524, 0.036633756246015094, 0.0368701448109608, 0.03710729360355864, 0.03734520262380863, 0.03758387187171076, 0.03782330134726502, 0.038063491050471424, 0.038304440981329964, 0.03854615113984065, 0.03878862152600347, 0.03903185213981844, 0.03927584298128554, 0.03952059405040478, 0.03976610534717616, 0.04001237687159967, 0.04025940862367533, 0.040507200603403126, 0.04075575281078305, 0.041005065245815125, 0.041255137908499336, 0.04150597079883569, 0.041757563916824184, 0.04200991726246483, 0.04226303083575758, 0.042516904636702484, 0.04277153866529954, 0.04302693292154873, 0.04328308740545006, 0.043540002117003526, 0.04379767705620913, 0.04405611222306687, 0.044315307617576745, 0.04457526323973877, 0.044835979089552926, 0.045097455167019226, 0.04535969147213767, 0.04562268800490824, 0.04588644476533098, 0.04615096175340583, 0.04641623896913282, 0.04668227641251196, 0.04694907408354323, 0.04721663198222664, 0.0474849501085622, 0.04775402846254989, 0.04802386704418972, 0.048294465853481676, 0.04856582489042579, 0.04883794415502204, 0.049110823647270443, 0.049384463367170964, 0.049658863314723634, 0.04993402348992844, 0.05020994389278537, 0.05048662452329445, 0.05076406538145568, 0.05104226646726904, 0.05132122778073454, 0.05160094932185218, 0.05188143109062195, 0.052162673087043865, 0.05244467531111794, 0.05272743776284413, 0.05301096044222247, 0.053295243349252945, 0.053580286483935556, 0.05386608984627031, 0.05415265343625719, 0.05443997725389622, 0.05472806129918739, 0.0550169055721307, 0.05530651007272615, 0.055596874800973736, 0.05588799975687348, 0.056179884940425334, 0.05647253035162934, 0.05676593599048548, 0.05706010185699376, 0.057355027951154186, 0.05765071427296675, 0.05794716082243145, 0.05824436759954829, 0.05854233460431726, 0.05884106183673837, 0.05914054929681163, 0.059440796984537046, 0.05974180489991458, 0.060043573042944255, 0.06034610141362607, 0.060649390011960014, 0.06095343883794611, 0.061258247891584336, 0.06156381717287471, 0.061870146681817215, 0.062177236418411864, 0.06248508638265865, 0.06279369657455758, 0.06310306699410866, 0.06341319764131186, 0.0637240885161672, 0.06403573961867469, 0.06434815094883431, 0.06466132250664607, 0.06497525429210997, 0.065289946305226, 0.06560539854599418, 0.06592161101441449, 0.06623858371048695, 0.06655631663421155, 0.0668748097855883, 0.06719406316461718, 0.06751407677129818, 0.06783485060563132, 0.06815638466761663, 0.06847867895725405, 0.06880173347454363, 0.06912554821948533, 0.06945012319207919, 0.06977545839232516, 0.07010155382022329, 0.07042840947577356, 0.07075602535897597, 0.07108440146983053, 0.0714135378083372, 0.07174343437449603, 0.07207409116830697, 0.07240550818977008, 0.07273768543888531, 0.0730706229156527, 0.07340432062007221, 0.07373877855214388, 0.07407399671186767, 0.07440997509924362, 0.07474671371427169, 0.0750842125569519, 0.07542247162728426, 0.07576149092526875, 0.07610127045090538, 0.07644181020419415, 0.07678311018513506, 0.0771251703937281, 0.07746799082997329, 0.07781157149387061, 0.07815591238542008, 0.0785010135046217, 0.07884687485147544, 0.07919349642598134, 0.07954087822813934, 0.0798890202579495, 0.0802379225154118, 0.08058758500052625, 0.08093800771329282, 0.08128919065371154, 0.0816411338217824, 0.08199383721750539, 0.08234730084088052, 0.08270152469190782, 0.08305650877058723, 0.08341225307691878, 0.08376875761090248, 0.0841260223725383, 0.08448404736182627, 0.08484283257876638, 0.08520237802335862, 0.085562683695603, 0.08592374959549953, 0.08628557572304821, 0.086648162078249, 0.08701150866110197, 0.08737561547160705, 0.08774048250976427, 0.08810610977557363, 0.08847249726903514, 0.08883964499014878, 0.08920755293891455, 0.08957622111533248, 0.08994564951940251, 0.09031583815112472, 0.09068678701049905, 0.09105849609752552, 0.09143096541220416, 0.09180419495453492, 0.0921781847245178, 0.09255293472215283, 0.09292844494744, 0.09330471540037931, 0.09368174608097075, 0.09405953698921435, 0.09443808812511006, 0.09481739948865793, 0.09519747107985793, 0.09557830289871007, 0.09595989494521438, 0.0963422472193708, 0.09672535972117936, 0.09710923245064007, 0.09749386540775291, 0.09787925859251789, 0.098265412004935, 0.09865232564500426, 0.09903999951272564, 0.09942843360809918, 0.09981762793112486, 0.10020758248180267, 0.10059829726013265, 0.10098977226611473, 0.10138200749974896, 0.10177500296103534, 0.10216875864997384, 0.10256327456656449, 0.10295855071080728, 0.1033545870827022, 0.10375138368224926, 0.10414894050944846, 0.1045472575642998, 0.1049463348468033, 0.10534617235695894, 0.1057467700947667, 0.10614812806022661, 0.10655024625333863, 0.10695312467410281, 0.10735676332251913, 0.10776116219858758, 0.10816632130230819, 0.10857224063368093, 0.1089789201927058, 0.10938635997938281, 0.10979455999371195, 0.11020352023569327, 0.1106132407053267, 0.11102372140261227, 0.11143496232754999, 0.11184696348013984, 0.11225972486038183, 0.11267324646827594, 0.1130875283038222, 0.1135025703670206, 0.11391837265787115, 0.11433493517637383, 0.11475225792252866, 0.11517034089633565, 0.11558918409779474, 0.11600878752690598, 0.11642915118366935, 0.11685027506808487]} diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/runner.py b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/runner.py index ba92ff1d1ca5..4549f00f07e4 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/runner.py +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/runner.py @@ -20,7 +20,7 @@ import os import json -import numpy as np +from numpy.random import rand from scipy.stats import anglit # Get the file path: @@ -30,21 +30,29 @@ DIR = os.path.dirname(FILE) -def gen(loc, sigma, name): - """Generate fixture data and write to file. +def gen(mean, scale, name): + """Generate fixture data and write to JSON. # Arguments - * `loc`: location parameter values - * `sigma`: scale parameter values + * `mean`: location parameter values (mu) + * `scale`: scale parameter values (sigma) * `name::str`: output filename + + # Examples + + ``` python + python> mean = rand(1000) * 10.0 - 5.0 + python> scale = (rand(1000) * 10.0) + 0.1 + python> gen(mean, scale, "data.json") + ``` """ - y = anglit.var(loc=loc, scale=sigma) + y = anglit.var(loc=mean, scale=scale) # Store data to be written to file as a dictionary: data = { - "mu": loc.tolist(), - "sigma": sigma.tolist(), + "mu": mean.tolist(), + "sigma": scale.tolist(), "expected": y.tolist() } @@ -58,27 +66,9 @@ def gen(loc, sigma, name): def main(): """Generate fixture data.""" - n = 500 - - # Small location parameter and small scale parameter: - loc = np.linspace(-1.0, 1.0, n) - sigma = np.linspace(0.1, 1.0, n) - gen(loc, sigma, "small_mu_small_sigma.json") - - # Small location parameter and large scale parameter: - loc = np.linspace(-1.0, 1.0, n) - sigma = np.linspace(1.0, 10.0, n) - gen(loc, sigma, "small_mu_large_sigma.json") - - # Large location parameter and small scale parameter: - loc = np.linspace(-100.0, 100.0, n) - sigma = np.linspace(0.1, 1.0, n) - gen(loc, sigma, "large_mu_small_sigma.json") - - # Large location parameter and large scale parameter: - loc = np.linspace(-100.0, 100.0, n) - sigma = np.linspace(1.0, 10.0, n) - gen(loc, sigma, "large_mu_large_sigma.json") + mean = rand(1000) * 10.0 - 5.0 + scale = (rand(1000) * 10.0) + 0.1 + gen(mean, scale, "data.json") if __name__ == "__main__": diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_large_sigma.json b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_large_sigma.json deleted file mode 100644 index ebab86faa30c..000000000000 --- a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_large_sigma.json +++ /dev/null @@ -1 +0,0 @@ -{"mu": [-1.0, -0.9959919839679359, -0.9919839679358717, -0.9879759519038076, -0.9839679358717435, -0.9799599198396793, -0.9759519038076152, -0.9719438877755511, -0.9679358717434869, -0.9639278557114228, -0.9599198396793587, -0.9559118236472945, -0.9519038076152304, -0.9478957915831663, -0.9438877755511023, -0.9398797595190381, -0.935871743486974, -0.9318637274549099, -0.9278557114228457, -0.9238476953907816, -0.9198396793587175, -0.9158316633266533, -0.9118236472945892, -0.9078156312625251, -0.9038076152304609, -0.8997995991983968, -0.8957915831663327, -0.8917835671342685, -0.8877755511022044, -0.8837675350701403, -0.8797595190380761, -0.875751503006012, -0.8717434869739479, -0.8677354709418837, -0.8637274549098196, -0.8597194388777555, -0.8557114228456915, -0.8517034068136273, -0.8476953907815632, -0.8436873747494991, -0.8396793587174349, -0.8356713426853708, -0.8316633266533067, -0.8276553106212425, -0.8236472945891784, -0.8196392785571143, -0.8156312625250501, -0.811623246492986, -0.8076152304609219, -0.8036072144288577, -0.7995991983967936, -0.7955911823647295, -0.7915831663326653, -0.7875751503006012, -0.7835671342685371, -0.779559118236473, -0.7755511022044088, -0.7715430861723447, -0.7675350701402806, -0.7635270541082164, -0.7595190380761523, -0.7555110220440882, -0.751503006012024, -0.7474949899799599, -0.7434869739478958, -0.7394789579158316, -0.7354709418837675, -0.7314629258517034, -0.7274549098196392, -0.7234468937875751, -0.719438877755511, -0.7154308617234469, -0.7114228456913828, -0.7074148296593187, -0.7034068136272545, -0.6993987975951904, -0.6953907815631263, -0.6913827655310621, -0.687374749498998, -0.6833667334669339, -0.6793587174348698, -0.6753507014028056, -0.6713426853707415, -0.6673346693386774, -0.6633266533066133, -0.6593186372745492, -0.6553106212424851, -0.6513026052104209, -0.6472945891783568, -0.6432865731462927, -0.6392785571142285, -0.6352705410821644, -0.6312625250501003, -0.6272545090180361, -0.623246492985972, -0.6192384769539079, -0.6152304609218437, -0.6112224448897796, -0.6072144288577155, -0.6032064128256514, -0.5991983967935872, -0.5951903807615231, -0.591182364729459, -0.5871743486973948, -0.5831663326653307, -0.5791583166332666, -0.5751503006012024, -0.5711422845691383, -0.5671342685370742, -0.56312625250501, -0.5591182364729459, -0.5551102204408818, -0.5511022044088176, -0.5470941883767535, -0.5430861723446894, -0.5390781563126252, -0.5350701402805611, -0.531062124248497, -0.5270541082164328, -0.5230460921843687, -0.5190380761523046, -0.5150300601202404, -0.5110220440881764, -0.5070140280561123, -0.5030060120240482, -0.498997995991984, -0.4949899799599199, -0.49098196392785576, -0.4869739478957916, -0.4829659318637275, -0.47895791583166336, -0.47494989979959923, -0.4709418837675351, -0.46693386773547096, -0.46292585170340683, -0.4589178356713427, -0.45490981963927857, -0.45090180360721444, -0.4468937875751503, -0.44288577154308617, -0.43887775551102204, -0.434869739478958, -0.4308617234468939, -0.42685370741482975, -0.4228456913827656, -0.4188376753507015, -0.41482965931863736, -0.4108216432865732, -0.4068136272545091, -0.40280561122244496, -0.3987975951903808, -0.3947895791583167, -0.39078156312625256, -0.38677354709418843, -0.3827655310621243, -0.37875751503006017, -0.37474949899799603, -0.3707414829659319, -0.36673346693386777, -0.36272545090180364, -0.3587174348697395, -0.35470941883767537, -0.35070140280561124, -0.3466933867735471, -0.342685370741483, -0.33867735470941884, -0.3346693386773547, -0.3306613226452907, -0.32665330661322656, -0.3226452905811624, -0.3186372745490983, -0.31462925851703416, -0.31062124248497003, -0.3066132264529059, -0.30260521042084176, -0.29859719438877763, -0.2945891783567135, -0.29058116232464937, -0.28657314629258523, -0.2825651302605211, -0.27855711422845697, -0.27454909819639284, -0.2705410821643287, -0.2665330661322646, -0.26252505010020044, -0.2585170340681363, -0.2545090180360722, -0.25050100200400804, -0.2464929859719439, -0.24248496993987978, -0.23847695390781565, -0.23446893787575152, -0.2304609218436875, -0.22645290581162336, -0.22244488977955923, -0.2184368737474951, -0.21442885771543096, -0.21042084168336683, -0.2064128256513027, -0.20240480961923857, -0.19839679358717444, -0.1943887775551103, -0.19038076152304617, -0.18637274549098204, -0.1823647294589179, -0.17835671342685377, -0.17434869739478964, -0.1703406813627255, -0.16633266533066138, -0.16232464929859725, -0.1583166332665331, -0.15430861723446898, -0.15030060120240485, -0.14629258517034072, -0.14228456913827658, -0.13827655310621245, -0.13426853707414832, -0.1302605210420842, -0.12625250501002017, -0.12224448897795603, -0.1182364729458919, -0.11422845691382777, -0.11022044088176364, -0.1062124248496995, -0.10220440881763537, -0.09819639278557124, -0.09418837675350711, -0.09018036072144298, -0.08617234468937884, -0.08216432865731471, -0.07815631262525058, -0.07414829659318645, -0.07014028056112231, -0.06613226452905818, -0.06212424849699405, -0.05811623246492992, -0.054108216432865786, -0.05010020040080165, -0.04609218436873752, -0.04208416833667339, -0.038076152304609256, -0.034068136272545124, -0.030060120240480992, -0.02605210420841686, -0.02204408817635284, -0.018036072144288706, -0.014028056112224574, -0.010020040080160442, -0.006012024048096309, -0.002004008016032177, 0.002004008016031955, 0.006012024048096087, 0.01002004008016022, 0.014028056112224352, 0.018036072144288484, 0.022044088176352616, 0.02605210420841675, 0.03006012024048088, 0.03406813627254501, 0.038076152304609145, 0.04208416833667328, 0.04609218436873741, 0.05010020040080154, 0.054108216432865675, 0.05811623246492981, 0.06212424849699394, 0.06613226452905807, 0.0701402805611222, 0.07414829659318634, 0.07815631262525047, 0.0821643286573146, 0.08617234468937873, 0.09018036072144286, 0.094188376753507, 0.09819639278557113, 0.10220440881763526, 0.1062124248496994, 0.11022044088176353, 0.11422845691382766, 0.11823647294589179, 0.12224448897795592, 0.12625250501002006, 0.13026052104208397, 0.1342685370741481, 0.13827655310621223, 0.14228456913827636, 0.1462925851703405, 0.15030060120240463, 0.15430861723446876, 0.1583166332665329, 0.16232464929859702, 0.16633266533066116, 0.1703406813627253, 0.17434869739478942, 0.17835671342685355, 0.18236472945891768, 0.18637274549098182, 0.19038076152304595, 0.19438877755511008, 0.1983967935871742, 0.20240480961923835, 0.20641282565130248, 0.2104208416833666, 0.21442885771543074, 0.21843687374749488, 0.222444889779559, 0.22645290581162314, 0.23046092184368727, 0.2344689378757514, 0.23847695390781554, 0.24248496993987967, 0.2464929859719438, 0.25050100200400793, 0.25450901803607207, 0.2585170340681362, 0.26252505010020033, 0.26653306613226446, 0.2705410821643286, 0.2745490981963927, 0.27855711422845686, 0.282565130260521, 0.2865731462925851, 0.29058116232464926, 0.2945891783567134, 0.2985971943887775, 0.30260521042084165, 0.3066132264529058, 0.3106212424849699, 0.31462925851703405, 0.3186372745490982, 0.3226452905811623, 0.32665330661322645, 0.3306613226452906, 0.3346693386773545, 0.3386773547094186, 0.34268537074148275, 0.3466933867735469, 0.350701402805611, 0.35470941883767515, 0.3587174348697393, 0.3627254509018034, 0.36673346693386755, 0.3707414829659317, 0.3747494989979958, 0.37875751503005994, 0.3827655310621241, 0.3867735470941882, 0.39078156312625234, 0.3947895791583165, 0.3987975951903806, 0.40280561122244474, 0.40681362725450887, 0.410821643286573, 0.41482965931863713, 0.41883767535070127, 0.4228456913827654, 0.42685370741482953, 0.43086172344689366, 0.4348697394789578, 0.4388777555110219, 0.44288577154308606, 0.4468937875751502, 0.4509018036072143, 0.45490981963927846, 0.4589178356713426, 0.4629258517034067, 0.46693386773547085, 0.470941883767535, 0.4749498997995991, 0.47895791583166325, 0.4829659318637274, 0.4869739478957915, 0.49098196392785565, 0.4949899799599198, 0.4989979959919839, 0.503006012024048, 0.5070140280561122, 0.5110220440881763, 0.5150300601202404, 0.5190380761523046, 0.5230460921843687, 0.5270541082164328, 0.531062124248497, 0.5350701402805611, 0.539078156312625, 0.5430861723446891, 0.5470941883767533, 0.5511022044088174, 0.5551102204408815, 0.5591182364729457, 0.5631262525050098, 0.5671342685370739, 0.5711422845691381, 0.5751503006012022, 0.5791583166332663, 0.5831663326653305, 0.5871743486973946, 0.5911823647294587, 0.5951903807615229, 0.599198396793587, 0.6032064128256511, 0.6072144288577153, 0.6112224448897794, 0.6152304609218435, 0.6192384769539077, 0.6232464929859718, 0.6272545090180359, 0.6312625250501, 0.6352705410821642, 0.6392785571142283, 0.6432865731462925, 0.6472945891783566, 0.6513026052104207, 0.6553106212424848, 0.659318637274549, 0.6633266533066131, 0.6673346693386772, 0.6713426853707414, 0.6753507014028055, 0.6793587174348696, 0.6833667334669338, 0.6873747494989979, 0.691382765531062, 0.6953907815631262, 0.6993987975951903, 0.7034068136272544, 0.7074148296593186, 0.7114228456913827, 0.7154308617234468, 0.719438877755511, 0.7234468937875751, 0.7274549098196392, 0.7314629258517034, 0.7354709418837675, 0.7394789579158316, 0.7434869739478958, 0.7474949899799597, 0.7515030060120238, 0.7555110220440879, 0.7595190380761521, 0.7635270541082162, 0.7675350701402803, 0.7715430861723445, 0.7755511022044086, 0.7795591182364727, 0.7835671342685369, 0.787575150300601, 0.7915831663326651, 0.7955911823647293, 0.7995991983967934, 0.8036072144288575, 0.8076152304609217, 0.8116232464929858, 0.8156312625250499, 0.819639278557114, 0.8236472945891782, 0.8276553106212423, 0.8316633266533064, 0.8356713426853706, 0.8396793587174347, 0.8436873747494988, 0.847695390781563, 0.8517034068136271, 0.8557114228456912, 0.8597194388777554, 0.8637274549098195, 0.8677354709418836, 0.8717434869739478, 0.8757515030060119, 0.879759519038076, 0.8837675350701402, 0.8877755511022043, 0.8917835671342684, 0.8957915831663326, 0.8997995991983967, 0.9038076152304608, 0.907815631262525, 0.9118236472945891, 0.9158316633266532, 0.9198396793587174, 0.9238476953907815, 0.9278557114228456, 0.9318637274549098, 0.9358717434869739, 0.939879759519038, 0.9438877755511021, 0.9478957915831663, 0.9519038076152302, 0.9559118236472943, 0.9599198396793585, 0.9639278557114226, 0.9679358717434867, 0.9719438877755509, 0.975951903807615, 0.9799599198396791, 0.9839679358717432, 0.9879759519038074, 0.9919839679358715, 0.9959919839679356, 1.0], "sigma": [1.0, 1.0180360721442885, 1.0360721442885772, 1.0541082164328657, 1.0721442885771544, 1.0901803607214429, 1.1082164328657313, 1.12625250501002, 1.1442885771543085, 1.1623246492985972, 1.1803607214428857, 1.1983967935871744, 1.216432865731463, 1.2344689378757514, 1.25250501002004, 1.2705410821643286, 1.2885771543086173, 1.3066132264529058, 1.3246492985971945, 1.342685370741483, 1.3607214428857715, 1.3787575150300602, 1.3967935871743486, 1.4148296593186374, 1.4328657314629258, 1.4509018036072145, 1.468937875751503, 1.4869739478957915, 1.5050100200400802, 1.5230460921843687, 1.5410821643286572, 1.559118236472946, 1.5771543086172346, 1.595190380761523, 1.6132264529058116, 1.6312625250501003, 1.6492985971943888, 1.6673346693386772, 1.685370741482966, 1.7034068136272547, 1.7214428857715431, 1.7394789579158316, 1.7575150300601203, 1.7755511022044088, 1.7935871743486973, 1.811623246492986, 1.8296593186372747, 1.8476953907815632, 1.8657314629258517, 1.8837675350701404, 1.9018036072144289, 1.9198396793587174, 1.937875751503006, 1.9559118236472948, 1.9739478957915833, 1.9919839679358717, 2.0100200400801604, 2.0280561122244487, 2.0460921843687374, 2.064128256513026, 2.0821643286573144, 2.1002004008016035, 2.118236472945892, 2.1362725450901805, 2.154308617234469, 2.1723446893787575, 2.190380761523046, 2.208416833667335, 2.226452905811623, 2.244488977955912, 2.2625250501002006, 2.280561122244489, 2.2985971943887775, 2.3166332665330662, 2.3346693386773545, 2.3527054108216436, 2.370741482965932, 2.38877755511022, 2.4068136272545093, 2.4248496993987976, 2.4428857715430863, 2.460921843687375, 2.4789579158316633, 2.496993987975952, 2.5150300601202407, 2.533066132264529, 2.5511022044088176, 2.5691382765531063, 2.5871743486973946, 2.6052104208416837, 2.623246492985972, 2.6412825651302603, 2.6593186372745494, 2.6773547094188377, 2.6953907815631264, 2.713426853707415, 2.7314629258517034, 2.749498997995992, 2.7675350701402808, 2.785571142284569, 2.8036072144288577, 2.8216432865731464, 2.8396793587174347, 2.8577154308617234, 2.875751503006012, 2.8937875751503004, 2.9118236472945895, 2.929859719438878, 2.9478957915831665, 2.965931863727455, 2.9839679358717435, 3.002004008016032, 3.020040080160321, 3.038076152304609, 3.056112224448898, 3.0741482965931866, 3.092184368737475, 3.1102204408817635, 3.1282565130260522, 3.146292585170341, 3.164328657314629, 3.182364729458918, 3.2004008016032066, 3.218436873747495, 3.2364729458917836, 3.2545090180360723, 3.272545090180361, 3.2905811623246493, 3.308617234468938, 3.3266533066132267, 3.344689378757515, 3.3627254509018036, 3.3807615230460923, 3.398797595190381, 3.4168336673346693, 3.434869739478958, 3.4529058116232467, 3.470941883767535, 3.4889779559118237, 3.5070140280561124, 3.525050100200401, 3.5430861723446894, 3.561122244488978, 3.579158316633267, 3.597194388777555, 3.6152304609218437, 3.6332665330661325, 3.651302605210421, 3.6693386773547094, 3.687374749498998, 3.705410821643287, 3.723446893787575, 3.741482965931864, 3.7595190380761525, 3.7775551102204408, 3.7955911823647295, 3.813627254509018, 3.831663326653307, 3.849699398797595, 3.867735470941884, 3.8857715430861726, 3.903807615230461, 3.9218436873747495, 3.9398797595190382, 3.957915831663327, 3.975951903807615, 3.993987975951904, 4.012024048096192, 4.030060120240481, 4.04809619238477, 4.066132264529058, 4.084168336673347, 4.102204408817635, 4.1202404809619235, 4.138276553106213, 4.156312625250501, 4.174348697394789, 4.192384769539078, 4.2104208416833675, 4.228456913827655, 4.246492985971944, 4.264529058116233, 4.2825651302605205, 4.30060120240481, 4.318637274549099, 4.336673346693387, 4.354709418837675, 4.3727454909819645, 4.390781563126253, 4.408817635270541, 4.42685370741483, 4.4448897795591185, 4.462925851703407, 4.480961923847696, 4.498997995991984, 4.517034068136272, 4.5350701402805615, 4.55310621242485, 4.571142284569138, 4.589178356713427, 4.6072144288577155, 4.625250501002004, 4.643286573146293, 4.661322645290581, 4.679358717434869, 4.697394789579159, 4.715430861723447, 4.733466933867735, 4.751503006012024, 4.769539078156313, 4.787575150300601, 4.80561122244489, 4.823647294589179, 4.841683366733466, 4.859719438877756, 4.877755511022045, 4.895791583166333, 4.913827655310621, 4.93186372745491, 4.949899799599199, 4.967935871743487, 4.985971943887776, 5.004008016032064, 5.022044088176353, 5.040080160320642, 5.05811623246493, 5.076152304609218, 5.094188376753507, 5.112224448897796, 5.130260521042084, 5.148296593186373, 5.166332665330661, 5.18436873747495, 5.202404809619239, 5.220440881763527, 5.238476953907816, 5.2565130260521045, 5.274549098196393, 5.292585170340682, 5.31062124248497, 5.328657314629258, 5.3466933867735476, 5.364729458917836, 5.382765531062124, 5.400801603206413, 5.4188376753507015, 5.43687374749499, 5.454909819639279, 5.472945891783567, 5.490981963927856, 5.509018036072145, 5.527054108216433, 5.545090180360722, 5.56312625250501, 5.5811623246492985, 5.599198396793588, 5.617234468937876, 5.635270541082164, 5.653306613226453, 5.671342685370742, 5.68937875751503, 5.707414829659319, 5.725450901803607, 5.7434869739478955, 5.761523046092185, 5.779559118236473, 5.797595190380762, 5.81563126252505, 5.833667334669339, 5.851703406813628, 5.869739478957916, 5.887775551102204, 5.9058116232464934, 5.923847695390782, 5.94188376753507, 5.959919839679359, 5.977955911823647, 5.995991983967936, 6.014028056112225, 6.032064128256513, 6.050100200400802, 6.0681362725450905, 6.086172344689379, 6.104208416833668, 6.122244488977956, 6.140280561122244, 6.158316633266534, 6.176352705410822, 6.19438877755511, 6.212424849699399, 6.2304609218436875, 6.248496993987976, 6.266533066132265, 6.284569138276553, 6.302605210420842, 6.320641282565131, 6.338677354709419, 6.356713426853708, 6.374749498997996, 6.3927855711422845, 6.410821643286574, 6.428857715430862, 6.44689378757515, 6.464929859719439, 6.482965931863728, 6.501002004008016, 6.519038076152305, 6.537074148296593, 6.5551102204408815, 6.573146292585171, 6.591182364729459, 6.609218436873748, 6.627254509018036, 6.645290581162325, 6.663326653306614, 6.681362725450902, 6.69939879759519, 6.7174348697394795, 6.735470941883768, 6.753507014028056, 6.771543086172345, 6.789579158316633, 6.807615230460922, 6.825651302605211, 6.843687374749499, 6.861723446893788, 6.8797595190380765, 6.897795591182365, 6.915831663326654, 6.933867735470942, 6.95190380761523, 6.96993987975952, 6.987975951903808, 7.006012024048096, 7.024048096192385, 7.0420841683366735, 7.060120240480962, 7.078156312625251, 7.096192384769539, 7.114228456913828, 7.132264529058117, 7.150300601202405, 7.168336673346694, 7.186372745490982, 7.2044088176352705, 7.22244488977956, 7.240480961923848, 7.258517034068136, 7.276553106212425, 7.294589178356714, 7.312625250501002, 7.330661322645291, 7.348697394789579, 7.3667334669338675, 7.384769539078157, 7.402805611222445, 7.420841683366734, 7.438877755511022, 7.456913827655311, 7.4749498997996, 7.492985971943888, 7.511022044088176, 7.5290581162324655, 7.547094188376754, 7.565130260521042, 7.583166332665331, 7.601202404809619, 7.619238476953908, 7.637274549098197, 7.655310621242485, 7.673346693386774, 7.6913827655310625, 7.709418837675351, 7.72745490981964, 7.745490981963928, 7.763527054108216, 7.781563126252506, 7.799599198396794, 7.817635270541082, 7.835671342685371, 7.8537074148296595, 7.871743486973948, 7.889779559118237, 7.907815631262525, 7.925851703406813, 7.943887775551103, 7.961923847695391, 7.97995991983968, 7.997995991983968, 8.016032064128257, 8.034068136272545, 8.052104208416834, 8.070140280561123, 8.08817635270541, 8.1062124248497, 8.124248496993989, 8.142284569138276, 8.160320641282565, 8.178356713426854, 8.196392785571142, 8.214428857715431, 8.23246492985972, 8.250501002004007, 8.268537074148297, 8.286573146292586, 8.304609218436873, 8.322645290581162, 8.340681362725451, 8.358717434869739, 8.376753507014028, 8.394789579158317, 8.412825651302605, 8.430861723446894, 8.448897795591183, 8.46693386773547, 8.484969939879761, 8.503006012024048, 8.521042084168336, 8.539078156312627, 8.557114228456914, 8.575150300601202, 8.593186372745492, 8.61122244488978, 8.629258517034067, 8.647294589178358, 8.665330661322646, 8.683366733466933, 8.701402805611224, 8.719438877755511, 8.737474949899799, 8.75551102204409, 8.773547094188377, 8.791583166332666, 8.809619238476955, 8.827655310621243, 8.845691382765532, 8.86372745490982, 8.881763527054108, 8.899799599198397, 8.917835671342687, 8.935871743486974, 8.953907815631263, 8.971943887775552, 8.98997995991984, 9.008016032064129, 9.026052104208418, 9.044088176352705, 9.062124248496994, 9.080160320641284, 9.098196392785571, 9.11623246492986, 9.13426853707415, 9.152304609218437, 9.170340681362726, 9.188376753507015, 9.206412825651302, 9.224448897795591, 9.24248496993988, 9.260521042084168, 9.278557114228457, 9.296593186372746, 9.314629258517034, 9.332665330661323, 9.350701402805612, 9.3687374749499, 9.386773547094188, 9.404809619238478, 9.422845691382767, 9.440881763527054, 9.458917835671343, 9.476953907815632, 9.49498997995992, 9.513026052104209, 9.531062124248498, 9.549098196392785, 9.567134268537075, 9.585170340681364, 9.603206412825651, 9.62124248496994, 9.63927855711423, 9.657314629258517, 9.675350701402806, 9.693386773547095, 9.711422845691382, 9.729458917835672, 9.74749498997996, 9.765531062124248, 9.783567134268537, 9.801603206412826, 9.819639278557114, 9.837675350701403, 9.855711422845692, 9.87374749498998, 9.891783567134269, 9.909819639278558, 9.927855711422845, 9.945891783567134, 9.963927855711423, 9.981963927855713, 10.0], "expected": [0.11685027506808487, 0.1211033264331077, 0.12543240056334448, 0.12983749745879514, 0.13431861711945975, 0.13887575954533823, 0.14350892473643062, 0.14821811269273696, 0.15300332341425718, 0.15786455690099138, 0.16280181315293943, 0.16781509217010143, 0.17290439395247734, 0.1780697185000671, 0.18331106581287085, 0.18862843589088849, 0.19402182873412005, 0.1994912443425655, 0.20503668271622494, 0.21065814385509818, 0.21635562775918535, 0.2221291344284865, 0.22797866386300153, 0.2339042160627305, 0.23990579102767332, 0.24598338875783016, 0.2521370092532008, 0.2583666525137854, 0.26467231853958395, 0.27105400733059637, 0.27751171888682263, 0.28404545320826297, 0.2906552102949172, 0.2973409901467852, 0.3041027927638672, 0.3109406181461632, 0.3178544662936729, 0.32484433720639666, 0.33191023088433436, 0.33905214732748595, 0.3462700865358514, 0.3535640485094308, 0.36093403324822415, 0.3683800407522313, 0.37590207102145246, 0.3835001240558875, 0.39117419985553653, 0.3989242984203994, 0.40675041975047616, 0.41465256384576693, 0.4226307307062715, 0.43068492033199, 0.4388151327229225, 0.4470213678790689, 0.45530362580042916, 0.4636619064870033, 0.4720962099387914, 0.48060653615579335, 0.4891928851380093, 0.4978552568854392, 0.5065936513980829, 0.5154080686759408, 0.5242985087190122, 0.5332649715272978, 0.5423074571007973, 0.5514259654395104, 0.5606204965434377, 0.5698910504125789, 0.5792376270469339, 0.588660226446503, 0.5981588486112859, 0.6077334935412825, 0.6173841612364933, 0.6271108516969179, 0.6369135649225564, 0.6467923009134092, 0.6567470596694754, 0.6667778411907554, 0.67688464547725, 0.687067472528958, 0.69732632234588, 0.707661194928016, 0.7180720902753658, 0.7285590083879296, 0.7391219492657074, 0.7497609129086988, 0.7604758993169044, 0.7712669084903239, 0.7821339404289571, 0.7930769951328047, 0.8040960726018657, 0.8151911728361405, 0.8263622958356299, 0.8376094416003326, 0.8489326101302495, 0.8603318014253805, 0.8718070154857248, 0.8833582523112835, 0.894985511902056, 0.9066887942580422, 0.9184680993792426, 0.930323427265657, 0.9422547779172848, 0.954262151334127, 0.9663455475161831, 0.9785049664634526, 0.9907404081759368, 1.0030518726536344, 1.015439359896546, 1.0279028699046717, 1.040442402678011, 1.0530579582165644, 1.0657495365203318, 1.0785171375893126, 1.091360761423508, 1.1042804080229172, 1.1172760773875396, 1.1303477695173767, 1.1434954844124274, 1.1567192220726923, 1.1700189824981708, 1.1833947656888633, 1.1968465716447698, 1.2103744003658898, 1.2239782518522242, 1.2376581261037725, 1.2514140231205346, 1.2652459429025105, 1.2791538854497004, 1.2931378507621043, 1.3071978388397216, 1.3213338496825535, 1.335545883290599, 1.3498339396638586, 1.364198018802332, 1.3786381207060192, 1.3931542453749206, 1.4077463928090355, 1.4224145630083644, 1.4371587559729075, 1.4519789717026645, 1.4668752101976352, 1.4818474714578198, 1.4968957554832185, 1.512020062273831, 1.5272203918296574, 1.542496744150698, 1.5578491192369524, 1.5732775170884201, 1.5887819377051022, 1.6043623810869985, 1.620018847234108, 1.635751336146432, 1.65155984782397, 1.6674443822667213, 1.6834049394746868, 1.6994415194478665, 1.71555412218626, 1.731742747689867, 1.7480073959586886, 1.7643480669927236, 1.7807647607919725, 1.7972574773564356, 1.8138262166861125, 1.8304709787810034, 1.8471917636411077, 1.8639885712664266, 1.880861401656959, 1.8978102548127058, 1.9148351307336657, 1.9319360294198398, 1.9491129508712286, 1.9663658950878304, 1.9836948620696462, 2.0010998518166767, 2.01858086432892, 2.0361378996063775, 2.05377095764905, 2.071480038456936, 2.0892651420300345, 2.1071262683683485, 2.125063417471876, 2.143076589340616, 2.161165783974572, 2.1793310013737415, 2.1975722415381242, 2.2158895044677207, 2.234282790162532, 2.2527520986225564, 2.271297429847795, 2.289918783838248, 2.308616160593914, 2.3273895601147943, 2.346238982400889, 2.3651644274521972, 2.384165895268719, 2.4032433858504554, 2.4223968991974054, 2.4416264353095682, 2.460931994186947, 2.480313575829538, 2.4997711802373437, 2.519304807410364, 2.538914457348597, 2.558600130052044, 2.5783618255207057, 2.5981995437545806, 2.6181132847536692, 2.638103048517973, 2.6581688350474906, 2.6783106443422198, 2.6985284764021653, 2.7188223312273245, 2.739192208817696, 2.759638109173283, 2.780160032294084, 2.800757978180098, 2.821431946831326, 2.842181938247769, 2.8630079524294243, 2.883909989376294, 2.904888049088379, 2.9259421315656757, 2.9470722368081876, 2.9682783648159132, 2.989560515588853, 3.0109186891270054, 3.032352885430374, 3.053863104498955, 3.0754493463327495, 3.0971116109317594, 3.118849898295982, 3.1406642084254184, 3.1625545413200697, 3.1845208969799343, 3.206563275405014, 3.228681676595306, 3.2508761005508124, 3.273146547271533, 3.2954930167574674, 3.3179155090086154, 3.340414024024978, 3.362988561806554, 3.385639122353343, 3.408365705665348, 3.431168311742565, 3.4540469405849965, 3.4770015921926434, 3.500032266565502, 3.5231389637035764, 3.546321683606863, 3.569580426275364, 3.59291519170908, 3.6163259799080087, 3.639812790872152, 3.663375624601509, 3.68701448109608, 3.7107293603558635, 3.7345202623808635, 3.7583871871710754, 3.7823301347265015, 3.806349105047143, 3.830444098132997, 3.8546151139840648, 3.8788621526003473, 3.9031852139818435, 3.927584298128554, 3.9520594050404774, 3.976610534717615, 4.001237687159967, 4.025940862367532, 4.0507200603403115, 4.075575281078306, 4.1005065245815135, 4.125513790849934, 4.15059707988357, 4.175756391682419, 4.200991726246481, 4.2263030835757585, 4.25169046367025, 4.2771538665299556, 4.302693292154873, 4.328308740545006, 4.3540002117003525, 4.379767705620913, 4.405611222306686, 4.431530761757676, 4.457526323973878, 4.483597908955293, 4.5097455167019245, 4.535969147213767, 4.562268800490825, 4.588644476533098, 4.615096175340582, 4.641623896913283, 4.668227641251196, 4.694907408354323, 4.721663198222665, 4.74849501085622, 4.775402846254989, 4.802386704418972, 4.82944658534817, 4.856582489042579, 4.883794415502205, 4.911082364727044, 4.938446336717096, 4.965886331472364, 4.993402348992843, 5.020994389278537, 5.048662452329446, 5.076406538145568, 5.104226646726905, 5.132122778073454, 5.160094932185218, 5.188143109062197, 5.2162673087043885, 5.244467531111793, 5.272743776284414, 5.3010960442222474, 5.329524334925294, 5.358028648393557, 5.38660898462703, 5.41526534362572, 5.4439977253896235, 5.47280612991874, 5.501690557213072, 5.530651007272616, 5.559687480097375, 5.588799975687348, 5.617988494042534, 5.647253035162934, 5.676593599048549, 5.706010185699378, 5.735502795115418, 5.765071427296676, 5.794716082243145, 5.824436759954829, 5.854233460431727, 5.884106183673839, 5.914054929681166, 5.944079698453704, 5.974180489991458, 6.004357304294426, 6.034610141362607, 6.064939001196002, 6.0953438837946115, 6.125824789158434, 6.156381717287471, 6.187014668181723, 6.217723641841187, 6.248508638265865, 6.279369657455759, 6.310306699410865, 6.341319764131185, 6.37240885161672, 6.403573961867468, 6.434815094883431, 6.466132250664607, 6.497525429210997, 6.528994630522601, 6.560539854599419, 6.59216110144145, 6.623858371048697, 6.655631663421156, 6.6874809785588285, 6.7194063164617175, 6.751407677129818, 6.783485060563133, 6.815638466761663, 6.847867895725406, 6.880173347454363, 6.912554821948534, 6.945012319207919, 6.977545839232518, 7.01015538202233, 7.042840947577356, 7.075602535897598, 7.108440146983052, 7.14135378083372, 7.174343437449603, 7.207409116830698, 7.240550818977008, 7.273768543888533, 7.307062291565271, 7.340432062007222, 7.373877855214388, 7.407399671186768, 7.440997509924362, 7.474671371427169, 7.5084212556951915, 7.542247162728424, 7.576149092526875, 7.610127045090539, 7.644181020419414, 7.678311018513505, 7.712517039372812, 7.746799082997329, 7.781157149387062, 7.8155912385420105, 7.850101350462168, 7.884687485147544, 7.919349642598133, 7.954087822813933, 7.988902025794951, 8.023792251541181, 8.058758500052624, 8.093800771329283, 8.128919065371155, 8.16411338217824, 8.19938372175054, 8.234730084088055, 8.27015246919078, 8.305650877058723, 8.341225307691879, 8.376875761090245, 8.412602237253832, 8.448404736182628, 8.484283257876637, 8.520237802335865, 8.556268369560303, 8.592374959549952, 8.628557572304823, 8.664816207824902, 8.701150866110194, 8.737561547160707, 8.774048250976428, 8.810610977557362, 8.847249726903515, 8.883964499014878, 8.920755293891453, 8.957622111533249, 8.994564951940252, 9.031583815112475, 9.068678701049908, 9.105849609752553, 9.143096541220418, 9.180419495453494, 9.21781847245178, 9.255293472215284, 9.292844494744003, 9.33047154003793, 9.368174608097076, 9.405953698921438, 9.443808812511007, 9.481739948865794, 9.519747107985797, 9.55783028987101, 9.595989494521438, 9.634224721937082, 9.672535972117936, 9.710923245064008, 9.749386540775292, 9.787925859251787, 9.826541200493502, 9.865232564500428, 9.903999951272564, 9.94284336080992, 9.98176279311249, 10.020758248180266, 10.059829726013263, 10.098977226611476, 10.138200749974894, 10.177500296103533, 10.216875864997386, 10.256327456656448, 10.295855071080728, 10.33545870827022, 10.375138368224931, 10.414894050944849, 10.454725756429983, 10.494633484680334, 10.534617235695894, 10.57467700947667, 10.61481280602266, 10.655024625333864, 10.695312467410282, 10.735676332251915, 10.77611621985876, 10.81663213023082, 10.857224063368095, 10.89789201927058, 10.938635997938283, 10.979455999371199, 11.020352023569325, 11.06132407053267, 11.10237214026123, 11.143496232754996, 11.184696348013984, 11.225972486038184, 11.267324646827593, 11.30875283038222, 11.350257036702065, 11.391837265787116, 11.433493517637384, 11.47522579225287, 11.517034089633562, 11.558918409779473, 11.600878752690598, 11.64291511836694, 11.685027506808488]} diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_small_sigma.json b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_small_sigma.json deleted file mode 100644 index 9b17932d5c0a..000000000000 --- a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/small_mu_small_sigma.json +++ /dev/null @@ -1 +0,0 @@ -{"mu": [-1.0, -0.9959919839679359, -0.9919839679358717, -0.9879759519038076, -0.9839679358717435, -0.9799599198396793, -0.9759519038076152, -0.9719438877755511, -0.9679358717434869, -0.9639278557114228, -0.9599198396793587, -0.9559118236472945, -0.9519038076152304, -0.9478957915831663, -0.9438877755511023, -0.9398797595190381, -0.935871743486974, -0.9318637274549099, -0.9278557114228457, -0.9238476953907816, -0.9198396793587175, -0.9158316633266533, -0.9118236472945892, -0.9078156312625251, -0.9038076152304609, -0.8997995991983968, -0.8957915831663327, -0.8917835671342685, -0.8877755511022044, -0.8837675350701403, -0.8797595190380761, -0.875751503006012, -0.8717434869739479, -0.8677354709418837, -0.8637274549098196, -0.8597194388777555, -0.8557114228456915, -0.8517034068136273, -0.8476953907815632, -0.8436873747494991, -0.8396793587174349, -0.8356713426853708, -0.8316633266533067, -0.8276553106212425, -0.8236472945891784, -0.8196392785571143, -0.8156312625250501, -0.811623246492986, -0.8076152304609219, -0.8036072144288577, -0.7995991983967936, -0.7955911823647295, -0.7915831663326653, -0.7875751503006012, -0.7835671342685371, -0.779559118236473, -0.7755511022044088, -0.7715430861723447, -0.7675350701402806, -0.7635270541082164, -0.7595190380761523, -0.7555110220440882, -0.751503006012024, -0.7474949899799599, -0.7434869739478958, -0.7394789579158316, -0.7354709418837675, -0.7314629258517034, -0.7274549098196392, -0.7234468937875751, -0.719438877755511, -0.7154308617234469, -0.7114228456913828, -0.7074148296593187, -0.7034068136272545, -0.6993987975951904, -0.6953907815631263, -0.6913827655310621, -0.687374749498998, -0.6833667334669339, -0.6793587174348698, -0.6753507014028056, -0.6713426853707415, -0.6673346693386774, -0.6633266533066133, -0.6593186372745492, -0.6553106212424851, -0.6513026052104209, -0.6472945891783568, -0.6432865731462927, -0.6392785571142285, -0.6352705410821644, -0.6312625250501003, -0.6272545090180361, -0.623246492985972, -0.6192384769539079, -0.6152304609218437, -0.6112224448897796, -0.6072144288577155, -0.6032064128256514, -0.5991983967935872, -0.5951903807615231, -0.591182364729459, -0.5871743486973948, -0.5831663326653307, -0.5791583166332666, -0.5751503006012024, -0.5711422845691383, -0.5671342685370742, -0.56312625250501, -0.5591182364729459, -0.5551102204408818, -0.5511022044088176, -0.5470941883767535, -0.5430861723446894, -0.5390781563126252, -0.5350701402805611, -0.531062124248497, -0.5270541082164328, -0.5230460921843687, -0.5190380761523046, -0.5150300601202404, -0.5110220440881764, -0.5070140280561123, -0.5030060120240482, -0.498997995991984, -0.4949899799599199, -0.49098196392785576, -0.4869739478957916, -0.4829659318637275, -0.47895791583166336, -0.47494989979959923, -0.4709418837675351, -0.46693386773547096, -0.46292585170340683, -0.4589178356713427, -0.45490981963927857, -0.45090180360721444, -0.4468937875751503, -0.44288577154308617, -0.43887775551102204, -0.434869739478958, -0.4308617234468939, -0.42685370741482975, -0.4228456913827656, -0.4188376753507015, -0.41482965931863736, -0.4108216432865732, -0.4068136272545091, -0.40280561122244496, -0.3987975951903808, -0.3947895791583167, -0.39078156312625256, -0.38677354709418843, -0.3827655310621243, -0.37875751503006017, -0.37474949899799603, -0.3707414829659319, -0.36673346693386777, -0.36272545090180364, -0.3587174348697395, -0.35470941883767537, -0.35070140280561124, -0.3466933867735471, -0.342685370741483, -0.33867735470941884, -0.3346693386773547, -0.3306613226452907, -0.32665330661322656, -0.3226452905811624, -0.3186372745490983, -0.31462925851703416, -0.31062124248497003, -0.3066132264529059, -0.30260521042084176, -0.29859719438877763, -0.2945891783567135, -0.29058116232464937, -0.28657314629258523, -0.2825651302605211, -0.27855711422845697, -0.27454909819639284, -0.2705410821643287, -0.2665330661322646, -0.26252505010020044, -0.2585170340681363, -0.2545090180360722, -0.25050100200400804, -0.2464929859719439, -0.24248496993987978, -0.23847695390781565, -0.23446893787575152, -0.2304609218436875, -0.22645290581162336, -0.22244488977955923, -0.2184368737474951, -0.21442885771543096, -0.21042084168336683, -0.2064128256513027, -0.20240480961923857, -0.19839679358717444, -0.1943887775551103, -0.19038076152304617, -0.18637274549098204, -0.1823647294589179, -0.17835671342685377, -0.17434869739478964, -0.1703406813627255, -0.16633266533066138, -0.16232464929859725, -0.1583166332665331, -0.15430861723446898, -0.15030060120240485, -0.14629258517034072, -0.14228456913827658, -0.13827655310621245, -0.13426853707414832, -0.1302605210420842, -0.12625250501002017, -0.12224448897795603, -0.1182364729458919, -0.11422845691382777, -0.11022044088176364, -0.1062124248496995, -0.10220440881763537, -0.09819639278557124, -0.09418837675350711, -0.09018036072144298, -0.08617234468937884, -0.08216432865731471, -0.07815631262525058, -0.07414829659318645, -0.07014028056112231, -0.06613226452905818, -0.06212424849699405, -0.05811623246492992, -0.054108216432865786, -0.05010020040080165, -0.04609218436873752, -0.04208416833667339, -0.038076152304609256, -0.034068136272545124, -0.030060120240480992, -0.02605210420841686, -0.02204408817635284, -0.018036072144288706, -0.014028056112224574, -0.010020040080160442, -0.006012024048096309, -0.002004008016032177, 0.002004008016031955, 0.006012024048096087, 0.01002004008016022, 0.014028056112224352, 0.018036072144288484, 0.022044088176352616, 0.02605210420841675, 0.03006012024048088, 0.03406813627254501, 0.038076152304609145, 0.04208416833667328, 0.04609218436873741, 0.05010020040080154, 0.054108216432865675, 0.05811623246492981, 0.06212424849699394, 0.06613226452905807, 0.0701402805611222, 0.07414829659318634, 0.07815631262525047, 0.0821643286573146, 0.08617234468937873, 0.09018036072144286, 0.094188376753507, 0.09819639278557113, 0.10220440881763526, 0.1062124248496994, 0.11022044088176353, 0.11422845691382766, 0.11823647294589179, 0.12224448897795592, 0.12625250501002006, 0.13026052104208397, 0.1342685370741481, 0.13827655310621223, 0.14228456913827636, 0.1462925851703405, 0.15030060120240463, 0.15430861723446876, 0.1583166332665329, 0.16232464929859702, 0.16633266533066116, 0.1703406813627253, 0.17434869739478942, 0.17835671342685355, 0.18236472945891768, 0.18637274549098182, 0.19038076152304595, 0.19438877755511008, 0.1983967935871742, 0.20240480961923835, 0.20641282565130248, 0.2104208416833666, 0.21442885771543074, 0.21843687374749488, 0.222444889779559, 0.22645290581162314, 0.23046092184368727, 0.2344689378757514, 0.23847695390781554, 0.24248496993987967, 0.2464929859719438, 0.25050100200400793, 0.25450901803607207, 0.2585170340681362, 0.26252505010020033, 0.26653306613226446, 0.2705410821643286, 0.2745490981963927, 0.27855711422845686, 0.282565130260521, 0.2865731462925851, 0.29058116232464926, 0.2945891783567134, 0.2985971943887775, 0.30260521042084165, 0.3066132264529058, 0.3106212424849699, 0.31462925851703405, 0.3186372745490982, 0.3226452905811623, 0.32665330661322645, 0.3306613226452906, 0.3346693386773545, 0.3386773547094186, 0.34268537074148275, 0.3466933867735469, 0.350701402805611, 0.35470941883767515, 0.3587174348697393, 0.3627254509018034, 0.36673346693386755, 0.3707414829659317, 0.3747494989979958, 0.37875751503005994, 0.3827655310621241, 0.3867735470941882, 0.39078156312625234, 0.3947895791583165, 0.3987975951903806, 0.40280561122244474, 0.40681362725450887, 0.410821643286573, 0.41482965931863713, 0.41883767535070127, 0.4228456913827654, 0.42685370741482953, 0.43086172344689366, 0.4348697394789578, 0.4388777555110219, 0.44288577154308606, 0.4468937875751502, 0.4509018036072143, 0.45490981963927846, 0.4589178356713426, 0.4629258517034067, 0.46693386773547085, 0.470941883767535, 0.4749498997995991, 0.47895791583166325, 0.4829659318637274, 0.4869739478957915, 0.49098196392785565, 0.4949899799599198, 0.4989979959919839, 0.503006012024048, 0.5070140280561122, 0.5110220440881763, 0.5150300601202404, 0.5190380761523046, 0.5230460921843687, 0.5270541082164328, 0.531062124248497, 0.5350701402805611, 0.539078156312625, 0.5430861723446891, 0.5470941883767533, 0.5511022044088174, 0.5551102204408815, 0.5591182364729457, 0.5631262525050098, 0.5671342685370739, 0.5711422845691381, 0.5751503006012022, 0.5791583166332663, 0.5831663326653305, 0.5871743486973946, 0.5911823647294587, 0.5951903807615229, 0.599198396793587, 0.6032064128256511, 0.6072144288577153, 0.6112224448897794, 0.6152304609218435, 0.6192384769539077, 0.6232464929859718, 0.6272545090180359, 0.6312625250501, 0.6352705410821642, 0.6392785571142283, 0.6432865731462925, 0.6472945891783566, 0.6513026052104207, 0.6553106212424848, 0.659318637274549, 0.6633266533066131, 0.6673346693386772, 0.6713426853707414, 0.6753507014028055, 0.6793587174348696, 0.6833667334669338, 0.6873747494989979, 0.691382765531062, 0.6953907815631262, 0.6993987975951903, 0.7034068136272544, 0.7074148296593186, 0.7114228456913827, 0.7154308617234468, 0.719438877755511, 0.7234468937875751, 0.7274549098196392, 0.7314629258517034, 0.7354709418837675, 0.7394789579158316, 0.7434869739478958, 0.7474949899799597, 0.7515030060120238, 0.7555110220440879, 0.7595190380761521, 0.7635270541082162, 0.7675350701402803, 0.7715430861723445, 0.7755511022044086, 0.7795591182364727, 0.7835671342685369, 0.787575150300601, 0.7915831663326651, 0.7955911823647293, 0.7995991983967934, 0.8036072144288575, 0.8076152304609217, 0.8116232464929858, 0.8156312625250499, 0.819639278557114, 0.8236472945891782, 0.8276553106212423, 0.8316633266533064, 0.8356713426853706, 0.8396793587174347, 0.8436873747494988, 0.847695390781563, 0.8517034068136271, 0.8557114228456912, 0.8597194388777554, 0.8637274549098195, 0.8677354709418836, 0.8717434869739478, 0.8757515030060119, 0.879759519038076, 0.8837675350701402, 0.8877755511022043, 0.8917835671342684, 0.8957915831663326, 0.8997995991983967, 0.9038076152304608, 0.907815631262525, 0.9118236472945891, 0.9158316633266532, 0.9198396793587174, 0.9238476953907815, 0.9278557114228456, 0.9318637274549098, 0.9358717434869739, 0.939879759519038, 0.9438877755511021, 0.9478957915831663, 0.9519038076152302, 0.9559118236472943, 0.9599198396793585, 0.9639278557114226, 0.9679358717434867, 0.9719438877755509, 0.975951903807615, 0.9799599198396791, 0.9839679358717432, 0.9879759519038074, 0.9919839679358715, 0.9959919839679356, 1.0], "sigma": [0.1, 0.10180360721442887, 0.10360721442885772, 0.10541082164328658, 0.10721442885771544, 0.10901803607214429, 0.11082164328657315, 0.11262525050100201, 0.11442885771543086, 0.11623246492985972, 0.11803607214428859, 0.11983967935871745, 0.1216432865731463, 0.12344689378757516, 0.12525050100200402, 0.12705410821643287, 0.12885771543086172, 0.1306613226452906, 0.13246492985971944, 0.13426853707414832, 0.13607214428857717, 0.13787575150300602, 0.13967935871743486, 0.14148296593186374, 0.1432865731462926, 0.14509018036072147, 0.14689378757515031, 0.14869739478957916, 0.150501002004008, 0.1523046092184369, 0.15410821643286574, 0.1559118236472946, 0.15771543086172346, 0.1595190380761523, 0.16132264529058116, 0.16312625250501003, 0.16492985971943888, 0.16673346693386776, 0.1685370741482966, 0.17034068136272545, 0.1721442885771543, 0.17394789579158318, 0.17575150300601203, 0.1775551102204409, 0.17935871743486975, 0.1811623246492986, 0.18296593186372745, 0.18476953907815633, 0.18657314629258517, 0.18837675350701405, 0.1901803607214429, 0.19198396793587175, 0.1937875751503006, 0.19559118236472947, 0.19739478957915832, 0.1991983967935872, 0.20100200400801604, 0.2028056112224449, 0.20460921843687374, 0.20641282565130262, 0.20821643286573147, 0.21002004008016034, 0.2118236472945892, 0.21362725450901804, 0.2154308617234469, 0.21723446893787576, 0.2190380761523046, 0.2208416833667335, 0.22264529058116234, 0.22444889779559118, 0.22625250501002006, 0.2280561122244489, 0.22985971943887776, 0.23166332665330663, 0.23346693386773548, 0.23527054108216433, 0.2370741482965932, 0.23887775551102206, 0.2406813627254509, 0.24248496993987978, 0.24428857715430863, 0.24609218436873748, 0.24789579158316635, 0.2496993987975952, 0.251503006012024, 0.2533066132264529, 0.2551102204408818, 0.2569138276553106, 0.2587174348697395, 0.2605210420841684, 0.2623246492985972, 0.26412825651302607, 0.2659318637274549, 0.26773547094188377, 0.2695390781563126, 0.27134268537074147, 0.2731462925851703, 0.2749498997995992, 0.27675350701402807, 0.2785571142284569, 0.2803607214428858, 0.28216432865731467, 0.2839679358717435, 0.28577154308617236, 0.2875751503006012, 0.28937875751503006, 0.2911823647294589, 0.29298597194388776, 0.2947895791583166, 0.2965931863727455, 0.29839679358717436, 0.3002004008016032, 0.3020040080160321, 0.30380761523046096, 0.3056112224448898, 0.30741482965931866, 0.3092184368737475, 0.31102204408817635, 0.3128256513026052, 0.31462925851703405, 0.3164328657314629, 0.3182364729458918, 0.32004008016032065, 0.3218436873747495, 0.3236472945891784, 0.32545090180360725, 0.3272545090180361, 0.32905811623246495, 0.3308617234468938, 0.33266533066132264, 0.3344689378757515, 0.33627254509018034, 0.3380761523046092, 0.3398797595190381, 0.34168336673346694, 0.3434869739478958, 0.3452905811623247, 0.34709418837675354, 0.3488977955911824, 0.35070140280561124, 0.3525050100200401, 0.35430861723446894, 0.3561122244488978, 0.35791583166332663, 0.3597194388777555, 0.36152304609218433, 0.3633266533066133, 0.36513026052104214, 0.366933867735471, 0.36873747494989983, 0.3705410821643287, 0.37234468937875753, 0.3741482965931864, 0.37595190380761523, 0.3777555110220441, 0.3795591182364729, 0.3813627254509018, 0.3831663326653306, 0.3849699398797596, 0.38677354709418843, 0.3885771543086173, 0.3903807615230461, 0.392184368737475, 0.3939879759519038, 0.39579158316633267, 0.3975951903807615, 0.39939879759519037, 0.4012024048096192, 0.40300601202404807, 0.4048096192384769, 0.4066132264529059, 0.4084168336673347, 0.41022044088176357, 0.4120240480961924, 0.41382765531062127, 0.4156312625250501, 0.41743486973947896, 0.4192384769539078, 0.42104208416833666, 0.4228456913827655, 0.42464929859719436, 0.4264529058116232, 0.42825651302605217, 0.430060120240481, 0.43186372745490986, 0.4336673346693387, 0.43547094188376756, 0.4372745490981964, 0.43907815631262526, 0.4408817635270541, 0.44268537074148295, 0.4444889779559118, 0.44629258517034065, 0.4480961923847695, 0.44989979959919846, 0.4517034068136273, 0.45350701402805615, 0.455310621242485, 0.45711422845691385, 0.4589178356713427, 0.46072144288577155, 0.4625250501002004, 0.46432865731462925, 0.4661322645290581, 0.46793587174348694, 0.4697394789579158, 0.47154308617234475, 0.4733466933867736, 0.47515030060120245, 0.4769539078156313, 0.47875751503006014, 0.480561122244489, 0.48236472945891784, 0.4841683366733467, 0.48597194388777554, 0.4877755511022044, 0.48957915831663323, 0.4913827655310621, 0.49318637274549104, 0.4949899799599199, 0.49679358717434874, 0.4985971943887776, 0.5004008016032064, 0.5022044088176353, 0.5040080160320641, 0.505811623246493, 0.5076152304609218, 0.5094188376753507, 0.5112224448897795, 0.5130260521042084, 0.5148296593186373, 0.5166332665330662, 0.518436873747495, 0.5202404809619239, 0.5220440881763527, 0.5238476953907816, 0.5256513026052104, 0.5274549098196393, 0.5292585170340681, 0.531062124248497, 0.5328657314629258, 0.5346693386773547, 0.5364729458917836, 0.5382765531062125, 0.5400801603206413, 0.5418837675350702, 0.543687374749499, 0.5454909819639279, 0.5472945891783567, 0.5490981963927856, 0.5509018036072144, 0.5527054108216433, 0.5545090180360721, 0.556312625250501, 0.5581162324649299, 0.5599198396793588, 0.5617234468937876, 0.5635270541082165, 0.5653306613226453, 0.5671342685370742, 0.568937875751503, 0.5707414829659319, 0.5725450901803607, 0.5743486973947896, 0.5761523046092184, 0.5779559118236474, 0.5797595190380762, 0.5815631262525051, 0.5833667334669339, 0.5851703406813628, 0.5869739478957916, 0.5887775551102205, 0.5905811623246493, 0.5923847695390781, 0.594188376753507, 0.5959919839679358, 0.5977955911823647, 0.5995991983967937, 0.6014028056112224, 0.6032064128256512, 0.6050100200400802, 0.606813627254509, 0.6086172344689379, 0.6104208416833667, 0.6122244488977956, 0.6140280561122244, 0.6158316633266533, 0.6176352705410821, 0.619438877755511, 0.6212424849699398, 0.6230460921843687, 0.6248496993987975, 0.6266533066132265, 0.6284569138276553, 0.6302605210420842, 0.632064128256513, 0.6338677354709419, 0.6356713426853707, 0.6374749498997996, 0.6392785571142284, 0.6410821643286573, 0.6428857715430861, 0.644689378757515, 0.6464929859719438, 0.6482965931863728, 0.6501002004008016, 0.6519038076152305, 0.6537074148296593, 0.6555110220440882, 0.657314629258517, 0.6591182364729459, 0.6609218436873747, 0.6627254509018036, 0.6645290581162324, 0.6663326653306613, 0.6681362725450901, 0.6699398797595191, 0.6717434869739479, 0.6735470941883768, 0.6753507014028056, 0.6771543086172345, 0.6789579158316633, 0.6807615230460922, 0.682565130260521, 0.6843687374749499, 0.6861723446893787, 0.6879759519038076, 0.6897795591182364, 0.6915831663326654, 0.6933867735470942, 0.6951903807615231, 0.6969939879759519, 0.6987975951903808, 0.7006012024048096, 0.7024048096192385, 0.7042084168336673, 0.7060120240480962, 0.707815631262525, 0.7096192384769539, 0.7114228456913827, 0.7132264529058117, 0.7150300601202405, 0.7168336673346694, 0.7186372745490982, 0.720440881763527, 0.7222444889779559, 0.7240480961923847, 0.7258517034068136, 0.7276553106212424, 0.7294589178356713, 0.7312625250501001, 0.733066132264529, 0.734869739478958, 0.7366733466933868, 0.7384769539078156, 0.7402805611222445, 0.7420841683366733, 0.7438877755511022, 0.745691382765531, 0.7474949899799599, 0.7492985971943887, 0.7511022044088176, 0.7529058116232464, 0.7547094188376753, 0.7565130260521042, 0.7583166332665331, 0.7601202404809619, 0.7619238476953908, 0.7637274549098196, 0.7655310621242485, 0.7673346693386773, 0.7691382765531062, 0.770941883767535, 0.7727454909819639, 0.7745490981963927, 0.7763527054108216, 0.7781563126252505, 0.7799599198396794, 0.7817635270541082, 0.7835671342685371, 0.7853707414829659, 0.7871743486973948, 0.7889779559118236, 0.7907815631262525, 0.7925851703406813, 0.7943887775551102, 0.796192384769539, 0.797995991983968, 0.7997995991983968, 0.8016032064128257, 0.8034068136272545, 0.8052104208416834, 0.8070140280561122, 0.8088176352705411, 0.8106212424849699, 0.8124248496993988, 0.8142284569138276, 0.8160320641282565, 0.8178356713426853, 0.8196392785571143, 0.8214428857715431, 0.823246492985972, 0.8250501002004008, 0.8268537074148297, 0.8286573146292585, 0.8304609218436874, 0.8322645290581162, 0.8340681362725451, 0.8358717434869739, 0.8376753507014028, 0.8394789579158316, 0.8412825651302606, 0.8430861723446894, 0.8448897795591183, 0.8466933867735471, 0.848496993987976, 0.8503006012024048, 0.8521042084168337, 0.8539078156312625, 0.8557114228456913, 0.8575150300601202, 0.859318637274549, 0.8611222444889779, 0.8629258517034069, 0.8647294589178357, 0.8665330661322646, 0.8683366733466934, 0.8701402805611222, 0.8719438877755511, 0.87374749498998, 0.8755511022044088, 0.8773547094188376, 0.8791583166332665, 0.8809619238476953, 0.8827655310621242, 0.8845691382765531, 0.886372745490982, 0.8881763527054108, 0.8899799599198397, 0.8917835671342685, 0.8935871743486974, 0.8953907815631262, 0.8971943887775551, 0.8989979959919839, 0.9008016032064128, 0.9026052104208416, 0.9044088176352705, 0.9062124248496994, 0.9080160320641283, 0.9098196392785571, 0.911623246492986, 0.9134268537074148, 0.9152304609218437, 0.9170340681362725, 0.9188376753507014, 0.9206412825651302, 0.9224448897795591, 0.9242484969939879, 0.9260521042084168, 0.9278557114228457, 0.9296593186372746, 0.9314629258517034, 0.9332665330661323, 0.9350701402805611, 0.93687374749499, 0.9386773547094188, 0.9404809619238477, 0.9422845691382765, 0.9440881763527054, 0.9458917835671342, 0.9476953907815631, 0.949498997995992, 0.9513026052104209, 0.9531062124248497, 0.9549098196392786, 0.9567134268537074, 0.9585170340681363, 0.9603206412825651, 0.962124248496994, 0.9639278557114228, 0.9657314629258517, 0.9675350701402805, 0.9693386773547094, 0.9711422845691383, 0.9729458917835672, 0.974749498997996, 0.9765531062124249, 0.9783567134268537, 0.9801603206412826, 0.9819639278557114, 0.9837675350701403, 0.9855711422845691, 0.987374749498998, 0.9891783567134268, 0.9909819639278556, 0.9927855711422846, 0.9945891783567135, 0.9963927855711423, 0.9981963927855712, 1.0], "expected": [0.001168502750680849, 0.0012110332643310775, 0.001254324005633445, 0.0012983749745879517, 0.0013431861711945977, 0.0013887575954533824, 0.0014350892473643066, 0.00148218112692737, 0.0015300332341425722, 0.0015786455690099139, 0.0016280181315293948, 0.0016781509217010146, 0.0017290439395247733, 0.0017806971850006716, 0.0018331106581287089, 0.0018862843589088848, 0.0019402182873412002, 0.0019949124434256553, 0.002050366827162249, 0.002106581438550982, 0.002163556277591854, 0.002221291344284865, 0.0022797866386300154, 0.0023390421606273052, 0.0023990579102767338, 0.002459833887578302, 0.0025213700925320087, 0.0025836665251378543, 0.0026467231853958394, 0.002710540073305964, 0.0027751171888682267, 0.0028404545320826306, 0.0029065521029491715, 0.0029734099014678524, 0.003041027927638672, 0.003109406181461632, 0.0031785446629367295, 0.0032484433720639675, 0.003319102308843344, 0.003390521473274859, 0.003462700865358514, 0.0035356404850943085, 0.0036093403324822413, 0.003683800407522314, 0.0037590207102145253, 0.003835001240558875, 0.003911741998555365, 0.003989242984203994, 0.004067504197504761, 0.004146525638457669, 0.004226307307062715, 0.004306849203319901, 0.0043881513272292245, 0.004470213678790689, 0.004553036258004291, 0.0046366190648700345, 0.004720962099387914, 0.004806065361557934, 0.004891928851380093, 0.004978552568854392, 0.00506593651398083, 0.005154080686759407, 0.005242985087190123, 0.005332649715272977, 0.005423074571007971, 0.005514259654395105, 0.005606204965434377, 0.0056989105041257895, 0.00579237627046934, 0.005886602264465029, 0.005981588486112859, 0.006077334935412826, 0.006173841612364933, 0.006271108516969181, 0.006369135649225565, 0.006467923009134091, 0.006567470596694755, 0.006667778411907557, 0.0067688464547724985, 0.00687067472528958, 0.006973263223458801, 0.00707661194928016, 0.00718072090275366, 0.0072855900838792965, 0.0073912194926570715, 0.00749760912908699, 0.007604758993169044, 0.007712669084903238, 0.007821339404289574, 0.007930769951328047, 0.008040960726018658, 0.008151911728361409, 0.008263622958356297, 0.008376094416003326, 0.008489326101302494, 0.008603318014253802, 0.008718070154857246, 0.008833582523112836, 0.00894985511902056, 0.009066887942580424, 0.00918468099379243, 0.009303234272656571, 0.009422547779172851, 0.00954262151334127, 0.00966345547516183, 0.009785049664634528, 0.009907404081759367, 0.010030518726536342, 0.010154393598965458, 0.010279028699046717, 0.010404424026780112, 0.010530579582165642, 0.010657495365203318, 0.01078517137589313, 0.01091360761423508, 0.01104280408022917, 0.0111727607738754, 0.011303477695173767, 0.011434954844124273, 0.01156719222072692, 0.011700189824981706, 0.011833947656888635, 0.011968465716447696, 0.0121037440036589, 0.012239782518522245, 0.012376581261037726, 0.012514140231205347, 0.012652459429025105, 0.012791538854497004, 0.01293137850762104, 0.013071978388397217, 0.013213338496825534, 0.01335545883290599, 0.013498339396638586, 0.013641980188023319, 0.013786381207060192, 0.013931542453749206, 0.014077463928090358, 0.014224145630083647, 0.014371587559729077, 0.014519789717026643, 0.014668752101976351, 0.014818474714578197, 0.014968957554832182, 0.015120200622738306, 0.01527220391829657, 0.015424967441506983, 0.015578491192369523, 0.015732775170884204, 0.015887819377051027, 0.016043623810869982, 0.01620018847234108, 0.01635751336146432, 0.016515598478239697, 0.016674443822667213, 0.016834049394746867, 0.01699441519447866, 0.017155541221862594, 0.017317427476898677, 0.017480073959586888, 0.017643480669927238, 0.017807647607919728, 0.017972574773564357, 0.018138262166861124, 0.01830470978781003, 0.018471917636411078, 0.018639885712664263, 0.018808614016569587, 0.018978102548127054, 0.019148351307336654, 0.019319360294198406, 0.01949112950871229, 0.019663658950878307, 0.019836948620696467, 0.020010998518166765, 0.020185808643289206, 0.02036137899606378, 0.020537709576490495, 0.02071480038456935, 0.020892651420300345, 0.021071262683683478, 0.02125063417471875, 0.021430765893406173, 0.021611657839745724, 0.021793310013737414, 0.021975722415381243, 0.02215889504467721, 0.022342827901625315, 0.022527520986225565, 0.02271297429847795, 0.022899187838382472, 0.023086161605939137, 0.02327389560114794, 0.023462389824008882, 0.023651644274521974, 0.023841658952687195, 0.024032433858504555, 0.02422396899197405, 0.02441626435309569, 0.02460931994186947, 0.024803135758295385, 0.024997711802373437, 0.025193048074103632, 0.025389144573485966, 0.02558600130052044, 0.025783618255207048, 0.025981995437545813, 0.026181132847536703, 0.02638103048517973, 0.026581688350474898, 0.026783106443422206, 0.026985284764021653, 0.02718822331227324, 0.027391922088176965, 0.02759638109173283, 0.027801600322940833, 0.028007579781800972, 0.028214319468313254, 0.02842181938247769, 0.028630079524294246, 0.028839099893762946, 0.029048880490883784, 0.029259421315656762, 0.029470722368081875, 0.02968278364815913, 0.029895605155888526, 0.03010918689127006, 0.03032352885430373, 0.030538631044989543, 0.030754493463327495, 0.030971116109317597, 0.031188498982959827, 0.03140664208425419, 0.0316255454132007, 0.031845208969799345, 0.03206563275405013, 0.03228681676595306, 0.03250876100550812, 0.032731465472715326, 0.03295493016757467, 0.03317915509008615, 0.03340414024024976, 0.03362988561806555, 0.033856391223533434, 0.03408365705665348, 0.034311683117425655, 0.03454046940584997, 0.034770015921926425, 0.035000322665655025, 0.03523138963703576, 0.03546321683606862, 0.035695804262753636, 0.035929151917090785, 0.036163259799080076, 0.036398127908721524, 0.036633756246015094, 0.0368701448109608, 0.03710729360355864, 0.03734520262380863, 0.03758387187171076, 0.03782330134726502, 0.038063491050471424, 0.038304440981329964, 0.03854615113984065, 0.03878862152600347, 0.03903185213981844, 0.03927584298128554, 0.03952059405040478, 0.03976610534717616, 0.04001237687159967, 0.04025940862367533, 0.040507200603403126, 0.04075575281078305, 0.041005065245815125, 0.041255137908499336, 0.04150597079883569, 0.041757563916824184, 0.04200991726246483, 0.04226303083575758, 0.042516904636702484, 0.04277153866529954, 0.04302693292154873, 0.04328308740545006, 0.043540002117003526, 0.04379767705620913, 0.04405611222306687, 0.044315307617576745, 0.04457526323973877, 0.044835979089552926, 0.045097455167019226, 0.04535969147213767, 0.04562268800490824, 0.04588644476533098, 0.04615096175340583, 0.04641623896913282, 0.04668227641251196, 0.04694907408354323, 0.04721663198222664, 0.0474849501085622, 0.04775402846254989, 0.04802386704418972, 0.048294465853481676, 0.04856582489042579, 0.04883794415502204, 0.049110823647270443, 0.049384463367170964, 0.049658863314723634, 0.04993402348992844, 0.05020994389278537, 0.05048662452329445, 0.05076406538145568, 0.05104226646726904, 0.05132122778073454, 0.05160094932185218, 0.05188143109062195, 0.052162673087043865, 0.05244467531111794, 0.05272743776284413, 0.05301096044222247, 0.053295243349252945, 0.053580286483935556, 0.05386608984627031, 0.05415265343625719, 0.05443997725389622, 0.05472806129918739, 0.0550169055721307, 0.05530651007272615, 0.055596874800973736, 0.05588799975687348, 0.056179884940425334, 0.05647253035162934, 0.05676593599048548, 0.05706010185699376, 0.057355027951154186, 0.05765071427296675, 0.05794716082243145, 0.05824436759954829, 0.05854233460431726, 0.05884106183673837, 0.05914054929681163, 0.059440796984537046, 0.05974180489991458, 0.060043573042944255, 0.06034610141362607, 0.060649390011960014, 0.06095343883794611, 0.061258247891584336, 0.06156381717287471, 0.061870146681817215, 0.062177236418411864, 0.06248508638265865, 0.06279369657455758, 0.06310306699410866, 0.06341319764131186, 0.0637240885161672, 0.06403573961867469, 0.06434815094883431, 0.06466132250664607, 0.06497525429210997, 0.065289946305226, 0.06560539854599418, 0.06592161101441449, 0.06623858371048695, 0.06655631663421155, 0.0668748097855883, 0.06719406316461718, 0.06751407677129818, 0.06783485060563132, 0.06815638466761663, 0.06847867895725405, 0.06880173347454363, 0.06912554821948533, 0.06945012319207919, 0.06977545839232516, 0.07010155382022329, 0.07042840947577356, 0.07075602535897597, 0.07108440146983053, 0.0714135378083372, 0.07174343437449603, 0.07207409116830697, 0.07240550818977008, 0.07273768543888531, 0.0730706229156527, 0.07340432062007221, 0.07373877855214388, 0.07407399671186767, 0.07440997509924362, 0.07474671371427169, 0.0750842125569519, 0.07542247162728426, 0.07576149092526875, 0.07610127045090538, 0.07644181020419415, 0.07678311018513506, 0.0771251703937281, 0.07746799082997329, 0.07781157149387061, 0.07815591238542008, 0.0785010135046217, 0.07884687485147544, 0.07919349642598134, 0.07954087822813934, 0.0798890202579495, 0.0802379225154118, 0.08058758500052625, 0.08093800771329282, 0.08128919065371154, 0.0816411338217824, 0.08199383721750539, 0.08234730084088052, 0.08270152469190782, 0.08305650877058723, 0.08341225307691878, 0.08376875761090248, 0.0841260223725383, 0.08448404736182627, 0.08484283257876638, 0.08520237802335862, 0.085562683695603, 0.08592374959549953, 0.08628557572304821, 0.086648162078249, 0.08701150866110197, 0.08737561547160705, 0.08774048250976427, 0.08810610977557363, 0.08847249726903514, 0.08883964499014878, 0.08920755293891455, 0.08957622111533248, 0.08994564951940251, 0.09031583815112472, 0.09068678701049905, 0.09105849609752552, 0.09143096541220416, 0.09180419495453492, 0.0921781847245178, 0.09255293472215283, 0.09292844494744, 0.09330471540037931, 0.09368174608097075, 0.09405953698921435, 0.09443808812511006, 0.09481739948865793, 0.09519747107985793, 0.09557830289871007, 0.09595989494521438, 0.0963422472193708, 0.09672535972117936, 0.09710923245064007, 0.09749386540775291, 0.09787925859251789, 0.098265412004935, 0.09865232564500426, 0.09903999951272564, 0.09942843360809918, 0.09981762793112486, 0.10020758248180267, 0.10059829726013265, 0.10098977226611473, 0.10138200749974896, 0.10177500296103534, 0.10216875864997384, 0.10256327456656449, 0.10295855071080728, 0.1033545870827022, 0.10375138368224926, 0.10414894050944846, 0.1045472575642998, 0.1049463348468033, 0.10534617235695894, 0.1057467700947667, 0.10614812806022661, 0.10655024625333863, 0.10695312467410281, 0.10735676332251913, 0.10776116219858758, 0.10816632130230819, 0.10857224063368093, 0.1089789201927058, 0.10938635997938281, 0.10979455999371195, 0.11020352023569327, 0.1106132407053267, 0.11102372140261227, 0.11143496232754999, 0.11184696348013984, 0.11225972486038183, 0.11267324646827594, 0.1130875283038222, 0.1135025703670206, 0.11391837265787115, 0.11433493517637383, 0.11475225792252866, 0.11517034089633565, 0.11558918409779474, 0.11600878752690598, 0.11642915118366935, 0.11685027506808487]} From 8ce82147959a96b7bf42078463780843d7a2d56e Mon Sep 17 00:00:00 2001 From: Om-A-osc Date: Fri, 17 Apr 2026 16:52:57 +0530 Subject: [PATCH 4/5] chore: cleanup --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../docs/img/equation_anglit_variance.svg | 4 -- .../base/dists/anglit/variance/test/test.js | 68 +++---------------- .../dists/anglit/variance/test/test.native.js | 68 +++---------------- 3 files changed, 16 insertions(+), 124 deletions(-) delete mode 100644 lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/img/equation_anglit_variance.svg diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/img/equation_anglit_variance.svg b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/img/equation_anglit_variance.svg deleted file mode 100644 index dcb058c6c92b..000000000000 --- a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/docs/img/equation_anglit_variance.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - Var(X) = σ²(π²/16 - 1/2) - diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.js b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.js index 7f61dade8858..e668d4a896e4 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.js +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.js @@ -30,10 +30,7 @@ var variance = require( './../lib' ); // FIXTURES // -var smallMuSmallSigma = require( './fixtures/python/small_mu_small_sigma.json' ); -var smallMuLargeSigma = require( './fixtures/python/small_mu_large_sigma.json' ); -var largeMuSmallSigma = require( './fixtures/python/large_mu_small_sigma.json' ); -var largeMuLargeSigma = require( './fixtures/python/large_mu_large_sigma.json' ); +var data = require( './fixtures/python/data.json' ); // TESTS // @@ -49,6 +46,8 @@ tape( 'if provided `NaN` for any parameter, the function returns `NaN`', functio t.strictEqual( isnan( y ), true, 'returns expected value' ); y = variance( 1.0, NaN ); t.strictEqual( isnan( y ), true, 'returns expected value' ); + y = variance( NaN, NaN ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); t.end(); }); @@ -76,70 +75,19 @@ tape( 'if provided a nonpositive `sigma`, the function returns `NaN`', function t.end(); }); -tape( 'the function returns the variance of an anglit distribution for small `mu` and small `sigma`', function test( t ) { - var expected; - var sigma; - var mu; - var y; - var i; - - expected = smallMuSmallSigma.expected; - mu = smallMuSmallSigma.mu; - sigma = smallMuSmallSigma.sigma; - for ( i = 0; i < expected.length; i++ ) { - y = variance( mu[i], sigma[i] ); - t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); - } - t.end(); -}); - -tape( 'the function returns the variance of an anglit distribution for small `mu` and large `sigma`', function test( t ) { - var expected; - var sigma; - var mu; - var y; - var i; - - expected = smallMuLargeSigma.expected; - mu = smallMuLargeSigma.mu; - sigma = smallMuLargeSigma.sigma; - for ( i = 0; i < expected.length; i++ ) { - y = variance( mu[i], sigma[i] ); - t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); - } - t.end(); -}); - -tape( 'the function returns the variance of an anglit distribution for large `mu` and small `sigma`', function test( t ) { - var expected; - var sigma; - var mu; - var y; - var i; - - expected = largeMuSmallSigma.expected; - mu = largeMuSmallSigma.mu; - sigma = largeMuSmallSigma.sigma; - for ( i = 0; i < expected.length; i++ ) { - y = variance( mu[i], sigma[i] ); - t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); - } - t.end(); -}); - -tape( 'the function returns the variance of an anglit distribution for large `mu` and large `sigma`', function test( t ) { +tape( 'the function returns the variance of an anglit distribution', function test( t ) { var expected; var sigma; var mu; var y; var i; - expected = largeMuLargeSigma.expected; - mu = largeMuLargeSigma.mu; - sigma = largeMuLargeSigma.sigma; + expected = data.expected; + mu = data.mu; + sigma = data.sigma; for ( i = 0; i < expected.length; i++ ) { y = variance( mu[i], sigma[i] ); - t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); + t.strictEqual( isAlmostSameValue( y, expected[i], 1 ), true, 'returns expected value' ); } t.end(); }); diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.native.js b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.native.js index 5a3963c2ccab..5e96371c1052 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.native.js +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.native.js @@ -39,10 +39,7 @@ var opts = { // FIXTURES // -var smallMuSmallSigma = require( './fixtures/python/small_mu_small_sigma.json' ); -var smallMuLargeSigma = require( './fixtures/python/small_mu_large_sigma.json' ); -var largeMuSmallSigma = require( './fixtures/python/large_mu_small_sigma.json' ); -var largeMuLargeSigma = require( './fixtures/python/large_mu_large_sigma.json' ); +var data = require( './fixtures/python/data.json' ); // TESTS // @@ -58,6 +55,8 @@ tape( 'if provided `NaN` for any parameter, the function returns `NaN`', opts, f t.strictEqual( isnan( y ), true, 'returns expected value' ); y = variance( 1.0, NaN ); t.strictEqual( isnan( y ), true, 'returns expected value' ); + y = variance( NaN, NaN ); + t.strictEqual( isnan( y ), true, 'returns expected value' ); t.end(); }); @@ -85,70 +84,19 @@ tape( 'if provided a nonpositive `sigma`, the function returns `NaN`', opts, fun t.end(); }); -tape( 'the function returns the variance of an anglit distribution for small `mu` and small `sigma`', opts, function test( t ) { - var expected; - var sigma; - var mu; - var y; - var i; - - expected = smallMuSmallSigma.expected; - mu = smallMuSmallSigma.mu; - sigma = smallMuSmallSigma.sigma; - for ( i = 0; i < expected.length; i++ ) { - y = variance( mu[i], sigma[i] ); - t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); - } - t.end(); -}); - -tape( 'the function returns the variance of an anglit distribution for small `mu` and large `sigma`', opts, function test( t ) { - var expected; - var sigma; - var mu; - var y; - var i; - - expected = smallMuLargeSigma.expected; - mu = smallMuLargeSigma.mu; - sigma = smallMuLargeSigma.sigma; - for ( i = 0; i < expected.length; i++ ) { - y = variance( mu[i], sigma[i] ); - t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); - } - t.end(); -}); - -tape( 'the function returns the variance of an anglit distribution for large `mu` and small `sigma`', opts, function test( t ) { - var expected; - var sigma; - var mu; - var y; - var i; - - expected = largeMuSmallSigma.expected; - mu = largeMuSmallSigma.mu; - sigma = largeMuSmallSigma.sigma; - for ( i = 0; i < expected.length; i++ ) { - y = variance( mu[i], sigma[i] ); - t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); - } - t.end(); -}); - -tape( 'the function returns the variance of an anglit distribution for large `mu` and large `sigma`', opts, function test( t ) { +tape( 'the function returns the variance of an anglit distribution', opts, function test( t ) { var expected; var sigma; var mu; var y; var i; - expected = largeMuLargeSigma.expected; - mu = largeMuLargeSigma.mu; - sigma = largeMuLargeSigma.sigma; + expected = data.expected; + mu = data.mu; + sigma = data.sigma; for ( i = 0; i < expected.length; i++ ) { y = variance( mu[i], sigma[i] ); - t.strictEqual( isAlmostSameValue( y, expected[i], 40 ), true, 'returns expected value' ); + t.strictEqual( isAlmostSameValue( y, expected[i], 1 ), true, 'returns expected value' ); } t.end(); }); From a1f2091577bbb27576587ecd2b41906e2c19caae Mon Sep 17 00:00:00 2001 From: Om-A-osc Date: Fri, 17 Apr 2026 17:08:06 +0530 Subject: [PATCH 5/5] chore: cleanup --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../base/dists/anglit/variance/test/fixtures/python/data.json | 2 +- .../@stdlib/stats/base/dists/anglit/variance/test/test.js | 2 +- .../stats/base/dists/anglit/variance/test/test.native.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/data.json b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/data.json index a7780d62313d..1b1362f75313 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/data.json +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/fixtures/python/data.json @@ -1 +1 @@ -{"mu": [-2.5083159374388, 0.3883749280424684, 1.4156941195302934, -4.641603274158308, 3.089182924665323, -1.7593624122864937, -3.4177572938513, -0.7738164986644023, -0.5630602939754521, -1.9768956792911627, -1.1957659026646916, -0.5363886417696584, 0.048342467267952216, 0.15600790679055532, -4.117094084058652, -4.437836223456907, -1.7324434221347906, -4.0026385652253325, -2.672084350468972, -3.6855879510678924, 0.5414326469131412, -1.7842958976859356, -3.4621261687437066, 2.520705399113469, 3.3263160725582637, -3.679227551239348, -2.785337570004782, 0.1876746939265601, 0.8708601467342145, 1.6902374704600023, -1.9381096345442606, -3.400003011360603, 1.3089395358658447, 4.336396429240162, 2.9576454561101526, -3.563708841231741, 2.1162257218234064, 4.14687223984687, -0.2526709784066439, 2.493598522855618, 3.357904968356845, 2.6849337514383382, 0.6924119772617878, 0.7536932928218878, 4.267721927728994, -2.6015681734396123, 0.979123036364423, 3.5451174240346024, 3.202919196860945, -3.1974572870220785, -0.648653356004826, -4.775592174359355, 3.348494843297466, -3.160738359628845, 0.17038077894723092, 1.0766195742822937, -2.0801862986418715, -0.29405435825659687, 1.2284734139082643, 3.5569218004291923, 1.0726422285403805, -3.3509545064553214, -2.79635330873694, 0.27156916602160575, -2.3326140687425267, 0.4167183058275761, 2.747318705002348, 3.9474708356531494, 4.397580497303448, -1.2245531962542557, 1.571840970874975, 4.800507379122877, 3.4239187184638773, -0.6791666802663778, 0.6074352669975216, 0.995928693843096, -4.666828447995007, -2.4618792245154166, -1.017359051250728, 0.8588110443747894, -2.909731470370389, -0.4376701646558363, -0.7126911328783372, -4.014787243184176, 4.77599791127451, 4.767254510624317, -4.324181027414749, -4.360937338296659, 0.22227688872439622, -0.7490226953726307, 4.809497319397941, -1.9560217935150872, -3.407513126215278, -3.575685376420351, 2.9150632454141876, -0.22146164753574116, -2.756761560288373, 4.03864950517046, -2.4858548296482486, -2.6247367370034844, 2.3578694213082034, 2.5570008536118927, 4.094116134011253, 0.5186840094369005, 2.570368196911242, -4.852791131104555, 0.1565189336715358, -2.127491606445248, 2.4722166827745253, 3.5719774737658163, -3.3609298055960957, 1.8798040658513564, -3.743954709665376, 2.1909654700431114, 3.9398962225557987, 1.106591657596545, 2.7178826297486083, 3.6682827673901635, 0.22590501367211502, -4.122000844477594, -3.968967260097563, -1.3906931372699418, -1.2208154831088214, 2.3284643314630307, -3.864651628582876, 0.5604075780738151, -3.9679929677597423, -3.3346996021431363, -1.1531246473291978, 4.835458727571432, 1.4381010964574443, -4.274151932225603, -1.7168803921854279, -0.5737244148401768, 0.7237247651363106, -0.566799724860207, 0.005327514445784054, -0.5790425636392129, 1.2295750102004313, -2.0003384297569005, -3.5717789311306527, -4.639259863552034, 4.528449874305924, -1.4137459432547415, -0.2786777526137554, -2.493745702206306, 1.0471713101969566, -2.808938078475242, -0.0866073772959206, -0.4326758244372977, -0.7781147869114058, -0.2597189550362886, -0.0767272509741499, -1.3002705908176337, -2.1050828526771213, 3.003655891496349, 2.4730581714981508, -0.10832633130373726, 0.6944494402439538, -3.1062071256449633, -4.208705656381731, 4.809074404143994, 4.726061367766917, -2.1413626261522567, -0.5886014430988649, -3.0719993440703943, 2.2981422361680695, 2.689831053069751, -4.495940721273995, -3.590428642561764, -0.36787213508511485, 1.3969608985357551, 4.557701822867266, -0.701041300701811, 0.352736110039209, 0.2329421427489411, 4.372630627537989, 4.655449894427093, 3.812186406866191, -1.4704002646600989, 2.9170312185845884, 1.8263749622459144, -1.435242289282864, 2.3899332715613797, -0.10096893414365038, -1.5865113271701747, 2.95032865030306, 0.4695062807323822, -2.8832571360310277, 4.914894987076261, 2.8492996283176266, -2.8754550233588496, -3.716617984965681, -3.5711298042855786, 1.1145749805624305, -3.5078159993160583, 1.8262246311509465, -0.08926895335655516, -3.841342742850827, 1.7464482593260442, 2.723994095716316, -1.4212609133006238, 0.6083758798603087, -0.12976532993411283, -0.32270525129119854, -0.06360702275384078, -3.201362500474888, 4.977734712325683, 0.962130834222056, -3.6371928832694533, 0.2463931344757313, -1.3430215904338674, -0.7080926782345189, -0.24373857524538156, 1.285154705473074, 4.733378071214355, 0.046131289617722615, 4.644962312309014, 0.8296959755570708, -1.2709774310668376, 3.8548003431936095, 4.491474992461901, -1.7655867806926073, 0.40445802625022154, -3.554914568370775, 4.365487727263995, 0.7065240082546804, -4.778317493053764, 4.210025326444679, -4.861238044233006, 4.626264355855859, -1.3964544548996791, 1.1734093140303319, -3.686172485663434, -0.5378774435802853, 2.958310391220172, 2.441525512134639, -2.2631739920451555, 4.425059521205677, -2.0307178907272783, 3.9081982903896026, -4.10243289890328, 2.9625619975046718, 2.6536594011637487, 4.860921918536992, 4.701394750920377, -2.8216362430376316, 4.20870313891337, 4.6328299810821605, -1.3048034337544587, 4.336398930875738, 3.2701518891179777, 2.7473057953768567, -2.310590626790211, 3.746864057731152, 4.709199928127193, 0.04457752064345044, 2.812558148955179, -4.369056480547824, 1.8475867256953258, 3.8839738760111118, -3.13631200164737, 1.0949960241701282, 3.8344317554508702, -4.8617431017023796, 1.4492927896990402, -0.6049834645136096, 3.2064690157369196, 0.34362991579202706, 4.695993356606044, 0.39209053732105126, -2.901069051647264, -1.1921464110352078, 1.131816473844589, 2.3357804187041555, 2.740592102231031, -3.651433027354676, -2.47803834561131, -1.2737755943534834, -1.064492136153068, -4.635577725172494, -0.8654711108958004, -1.3896061591630726, -4.405973670653021, 4.031972437699643, -2.4720557397427125, -1.7747503757371907, -0.887570757088989, -1.6133826215624039, 0.07300656130199368, 2.585250814531973, -4.229883834521041, 4.764882617035935, 4.392952455870386, 1.1930358829483465, -1.2010814452712015, -4.748341034619111, -2.6940963998109635, 4.351271390852268, 3.8702308157052716, 2.2892187248568474, 1.395990539605135, -0.2478415554646407, -0.32064108721404505, -2.9425968081020857, -2.6643020880172874, -2.7113253697705586, -4.5361376046705, -1.9559938134442891, 4.687188786935664, 4.016146388897187, -1.7450579014973044, 1.0923201935822169, -3.3225196183314107, 1.3571403714885077, 0.5942622249244476, 3.0381221672565637, 1.6563360097101851, -3.1521956290922692, -0.294647009260558, 0.6371819953390725, -3.682066771223619, 0.08293665642698489, 2.3066103490864496, -2.1980639561773794, 3.209463930613719, 1.0844294627269022, -0.7700036663269829, 4.4957084723258784, -1.91633863206396, 0.5545589302843563, -1.8231188744260383, -4.933738479889497, -1.9522232103679746, 2.2208255832775876, -2.665446344519753, 2.174152163215121, -0.8650558152821475, -1.7017540938305986, -4.138571266376508, 0.40811183674577034, -3.255739343588804, -3.3437832248771526, -4.070866540886736, -2.3590322494221647, -1.20544011311152, -0.30761565639370936, 4.678754622523792, 0.970208188196704, -1.756866500792098, -3.918400089167413, -4.175872843839105, 3.4819995455364285, -4.801011723513766, -1.9470368484731337, -1.3362063655937897, -3.664842850201586, -0.8510125697849222, 3.718749524130649, 4.020664753519865, 2.336483122765954, -3.3229260907960056, 4.968453253784874, -1.64354602516823, 1.159612309785282, 2.8624844205398148, -0.3147330078682913, 0.8711600621516657, 4.090341508106777, -1.1443905525074314, 2.9452001437698705, -1.368511918445432, -3.8961714897626765, 4.557318689777073, 3.888088559846155, -0.17251588165532272, -2.433797282691809, -0.7928345993408028, -1.5983831042728989, -3.005326436443073, -0.6783956012765788, -2.3157294331328093, -4.737593059984557, 3.5232235473295663, -3.4054707643210502, 2.930625444113919, -1.0360698035294158, -0.42146142359897887, 1.1021977771364195, 4.106654937197785, -4.9466090218460534, 3.131834460062775, 4.323835712400955, 0.48000590732430215, -4.681086636555293, 0.6296301958011359, 2.7073035302189696, 3.8336676577690056, 4.484169169247346, 4.2828047324371745, 2.4617185946792297, -0.7070689688259959, -2.6287979741457246, -0.45746113653270104, 4.5344549426580745, 3.743543375602364, 0.34287000856055183, 4.080004208034945, -2.0848281092703393, 3.133847841459815, 0.815292548736533, 3.612532430910619, 4.626631074463251, -2.888911979102047, -3.457702644276097, 3.614333476873579, -1.5305070868959039, 2.5225847093182887, 0.5628847456214645, 4.414833966725233, 2.102797387985028, -3.9665464706300355, -1.8350278604237245, -4.483829288615055, -4.728969405714556, -0.7558359361169762, 2.7748815137490688, 0.6316595737318842, -1.7020708745125712, -1.9541338397294172, 4.821898469962541, -0.4326661881325453, 2.3896214191112284, 1.9043610533444202, -2.8820724514468763, 0.5107266030024533, -3.3630671616870544, -0.14675660612782782, -2.7313959716691647, -4.99840606388028, 4.861369873065259, 3.052361532839317, -3.7347439358203696, 3.6792112883356705, 3.680377710808486, 1.9161198659983478, -0.0919465499894132, -3.291827453168934, 1.8464545183810692, 2.0171226924892247, -3.0597318262760007, 4.062076334406932, -4.823573089971596, -1.0819986661871441, -3.4690954275755725, 3.8821490294404164, 4.613380008109413, 3.576060958175697, 0.38808842547844336, -3.3429474585450283, -4.02950073251536, -1.7135920046000566, 3.3611478350914012, -1.7678929294663606, -4.798527077014935, 2.8915363178531788, -1.0245572596466856, -0.9166741209235241, -1.8667784594030024, -4.98946643071037, -3.0390760835516284, 2.144053725592152, 4.88292147185064, -4.923792497704048, -0.3139750388465785, -4.793493915607552, -3.063549217104452, -3.0335512688632713, -2.4773980022090902, 1.2616754511693635, -1.4663604853051004, 0.10732639711396175, -2.118679034277969, 3.8941992955432863, 4.552702666915621, 1.0237378402315143, -4.3277521066965665, 3.7963864611030473, 2.307229418913784, 3.0726995991615382, -3.1941198889598543, 4.014028023585096, 0.9747175721526657, -4.086091029791432, 0.46729299128661417, -1.8999717315422346, -2.8008831184063587, 1.4139162597512742, -2.813710149983989, 4.366050606350676, -2.204208282409815, -4.1246526586721055, -1.4332919126564345, -0.8113636928726198, -4.50652142182623, 1.5438234047417243, -3.9834972505290365, -3.5575744842156922, 3.6676072644413225, 0.18499626233915478, -2.4376815467502446, -3.263852960799647, 4.205165458499485, 1.360152672994591, -3.2352725813994567, -0.1962551686926206, -4.006339294421056, -3.229323378854242, 4.88101725241712, -3.313880348363416, 4.290465120067134, 4.699378113154504, -3.0926277709409753, 3.854771278357079, 1.3557246783906196, -2.3788034996100373, 3.9346008804755055, 2.4919049704316745, -2.959315799341393, -2.262676205523885, -0.032872516501835314, -4.3227195206155775, -3.5973893828036783, 1.1514468299714729, 3.186451018681531, 0.5626780780059191, 0.44778253521049294, -1.5944698950180558, -1.7930820099925437, -4.909300406880192, -0.22687870507681218, 3.9377635696780793, -0.012882938749461559, 0.8313730389756468, -2.151729286836903, 1.2277525186713758, -0.4341081248709955, 0.5175137156505887, -1.0112350524324079, -0.8032761884040998, 2.300795114523547, 1.9383198659822458, 4.674553494673564, 0.3449162678463944, 1.3456399481310202, 0.39423368246535695, 2.3336117934806992, 0.12159890111044103, 2.729622172392495, -0.17382834759376742, 4.3156738742768415, 4.078158089466536, 0.18787854766628698, -0.8602564054960835, -1.878671131905807, 3.2916410121717714, -2.6657540846403602, 3.654968142519751, -0.8440294789560676, -2.2391076259841913, 2.539447842649855, 4.8133978876564925, -1.0610606603536077, 3.7922107257429527, 4.278919507982334, 1.3045434004064385, 4.100299001661243, 4.830817650920361, -3.6991216557319486, -4.326369794814429, 2.1058591622431564, -2.1332822693487863, 1.3331807437700283, 4.84104991520393, 3.2281792724605207, -0.9436002288587151, -3.819029295669182, -0.7815086340029707, -2.8203114463327283, -3.500361677417331, 4.86176356709872, -3.540608113696937, -3.43738570941321, -1.6146681799018592, 0.2960073503000249, -2.0131031586627945, 4.190362289963922, -1.9093218104126097, -0.6318139598158972, 1.4407026836047887, -2.5976228916568234, -3.5508963332512122, -2.899280129952876, 4.192785360580302, -0.8268452675579576, 4.796467302338687, 2.5922787784830925, 4.7494436385127266, 0.9427120276102734, -1.0353208931509705, 0.1371434806307379, -2.1304081918548468, -2.598546700869134, -2.399473590042592, 1.279753761600528, -3.5358591168320705, -3.923335424391432, 1.8331983956676687, -3.991408612554581, 2.437245039620625, 3.696616094786009, -3.3497710361380206, 3.163689956167538, -1.2078751547361155, -2.9638362591144416, 4.540192775212319, 2.3441671405428988, -3.735970719646856, 0.9386043677505942, 0.8527893674932718, 1.3761382579626202, 2.1691843855118087, -1.0198855884211055, -2.575541801448056, 3.0675528787167146, -4.0735278898636285, 0.21307735195055777, -2.4614437404246194, -2.0379267783244215, -2.5339627765618133, -4.668252250629994, 0.34632276321958777, -0.5885518114807597, 2.5502444116527334, -1.788612267353055, -2.5550145557363657, 2.2253414907056985, -0.8570687295006438, 4.780288512180974, -3.575070834034111, 4.645477142182759, 3.9154144454818898, 0.21693892999097653, 4.882772382730794, 0.7406265766031241, 0.5284313467594774, 1.5775068066567641, 3.065051056847107, 0.3197842664527153, 2.6586794046598774, 1.1009253067651148, 3.8336502271063306, 1.0210184129094877, 3.142836922047744, 2.9437171841578014, -1.6698219833307029, -0.29519795838470664, 2.2914273006502883, 0.7917718222479593, -1.9828011764018227, -2.6045741351132623, 2.9918433713329335, -0.8187450024752687, -2.371502489533577, 1.1903996415320606, 2.8632110134831397, 0.222358879480538, 3.8340608407789176, -4.446156228425455, -3.8255310750939184, -0.7077951101707463, 3.649052082828584, 2.274003499170111, 1.9567179961472325, 3.1795244461957655, -4.692313642729294, -4.6856673302729, -2.022257176179406, 2.3191056423143577, -1.3354467720972907, -3.1701778394281255, 1.1050598139803247, 4.809241484014192, -0.8575213285521581, -1.0592249663925255, -1.1084634799383775, 1.449683938605192, 4.899792313480036, 0.05949854529290732, 2.5676264458641116, -2.3053211735321852, -2.7594453164732347, 4.295719127939876, -1.2335939774980709, 3.461313711481111, 2.2689716954309693, 2.7934498169340536, 0.13059585134488927, 2.5851289602798726, -1.4543061019969317, -2.590730585883997, -4.444986454046452, 0.8047033285619207, 3.041022328253165, 4.700956625224764, -2.443172819080457, 4.499053239232829, -0.3158406340088957, -4.819441846448436, -0.14594262417937998, -0.5436142889321269, -0.9500992926308536, -1.5314872389800405, -3.469336270949186, 4.621638829333591, -3.5380079825757162, 3.7687090750586965, 2.09422019799306, -1.135540151920594, -4.177148560457375, 2.794426763177552, 0.38506185743028176, 2.1003855791406734, -4.191947512053055, -4.1182202314007545, 3.709095211530988, 4.0501097199758735, -1.659457652216505, -2.3960748040808353, 0.7705495082467415, 2.030280329321913, -2.7527615665328797, 2.1161914553538104, -0.9293919467679634, 4.635138929532722, -1.1049133777231424, 4.034187608783215, 0.7201879173123764, 1.223025140639372, 4.61423486027773, 3.97259526810166, -4.425319876487135, 4.833122781279734, 4.701686911691317, -3.5030933543997467, -2.3453379566727817, -1.6775797896167344, 0.6483724000866751, -1.180922651422506, 0.7138646602025664, 2.6392417366680174, 4.2698560367677665, 0.5783700669986285, -2.408179677306308, 0.5801438143308761, 2.9138345289913534, -4.221143098697986, 1.709844876988793, -1.6356098763847493, -4.776814399194929, 3.5802017313803898, 0.9231611555619725, 3.3269380453791726, -3.3817785602961505, -4.366754925036563, -4.1678926204764295, -3.823201289604643, -3.43673610189163, 4.830558412534588, 4.0135954044262, -2.187446978121547, -1.7680429537736786, -3.443210661936188, 0.7000722141680829, -0.12321530430752681, -1.4353445914281702, 4.554810233185801, -0.3810637137606774, 1.8530289973404148, -3.0833591968121645, 1.906673640522305, -0.6822704184854755, -2.5186814492826928, -1.285304939048999, -1.8183339414044566, -2.4845806786738778, -0.7267446105862074, 0.021169240414375956, 2.706173986126906, -3.146026104397267, -4.741110901641359, -0.11255755017907987, 1.1265950739981143, -4.886963036778871, -1.4905099207806547, -3.370574501993212, 1.6288292780123843, -2.876089858856389, 0.038383931426499984, 3.015732738398043, 1.6797212815197673, -3.2993210200150824, -3.834946694609659, 3.356880093368858, 1.2474310089490626, -4.08443843717513, 4.622794279798217, 4.261371752410447, 1.396821872440536, 4.400078590051809, 3.890463817257933, -0.018996154497737727, 0.49830205147919937, 4.141436133881193, -2.0959231265001446, 0.7333266108649807, -4.509346378037567, 4.586765361933418, -4.890926793649512, 1.0174257675131573, -4.535572723749946, 1.412590809226339, -2.93368373400126, -2.827296389196042, -0.43403309677580815, 3.321376006998218, 3.8252123668483176, 4.598738111333484, -3.1860596582582557, -4.684566541361075, 0.9802894582103994, -2.56872828870506, -3.2115402670692283, 4.273384294091027, 1.77506713804814, 0.39822273687375187, -1.9858302991456123, 4.043099964099346, -1.826317531731334, -0.7359794695932864, 0.749978451341712, -4.554578732011969, 4.597640093730622, -0.09434758161861101, 3.1525917327442645, -2.7864785149688744, -4.926393511320275, -0.6567111303256903, 4.794053396581152, -0.5379201043909445, 0.422448526103647, 2.2192531564183504, 4.698068207774009, -1.9358943076454818, 1.1969091999600572, -4.5968649469267735, -4.007585337938167, -4.92811957071098, -2.495676049154094, 3.8014967240633144, -1.020967768048754, 1.534755461060774, -4.695614278557914, -1.0411769276617622, 4.820811482322437, -2.028872949788212, -2.4470573617210944, 1.9844904027751076, -2.04690595489601, -0.7337804069887532, 1.726484761080746, -2.679209503182447, -1.7912985845036533, -4.890718132537413, -1.1539055155309166, -4.835498919853009, 3.8962455753445244, -0.7547146983470494, 3.98200632501179, 3.2374233205808025, 1.3260276139295062, 4.828167492132906, 0.35296756790090456, 3.1260999508003273, -3.440583886949611, 3.511161236718282, 3.3701556354262276, -4.699117056344536, -0.9952355325770199, -0.8645301685116085, -1.6639794632605973, -0.9285976233640341, 0.7835995701746494, 0.08561988456726866, 0.1245310919116811, 2.761434415125141, -1.8442569129263484, -4.395359667754446, 0.4842972260307876, 0.33993190959700925, -3.0845036909637704, 0.7004811042712014, 4.561748498929093, -3.313447261648712, -0.1576401333279538, -1.4242151100545577, -2.097298975841154, -4.5317008833872165, 4.7947225133438405, 4.601603163301487, 2.775610470613503, -1.6170856115491503, 2.2115071470157224, 4.053773117244932, 0.42783879581917894, -4.528817061743555, 3.2813412705395013, 0.42818496899333525, -1.9084199902654753, 1.6466399869380712, -1.5443139877363352, -4.536253431923986, 3.4209560634449883, -1.2119219684579443, 0.3244255875144564, -0.321854372040816, -0.08877678381866438, -2.8510690999639055, 4.542973363664503, 3.328526757755961, -2.5339563748522362, -4.743590603042942, 0.8416173414445787, -1.7366491088709477, 0.13175743220377534, 3.381962879358257, -0.6558227738964861, -0.8288599796592759, 0.08002832516428882, 2.8438027762296114, -3.334098778301635, 3.2001534296501877, -3.5633709632151858, 2.8186104538774126, 4.167084607981945, 2.0378319883730267, 4.028264748671997, -3.8999342452308614, 0.7512863536543124, -3.550055914845572, -4.379539328511624, -0.06678572467822086, 2.6730680923976315, -1.6242522112499067, 2.766643625308519, 3.822316340828559, -4.863442090443631, 1.2029759906746031, 0.8209922359590447, 3.6963488607974746, 2.368265017716028, 3.925790180633859, -0.6823543223570772, -2.215797443784868, 4.615537633802916, 4.98638557133517, -4.65713870935536, -2.4731363983215635, 3.0418537984621548, -2.5970496144701958, 3.5511878490954683, 1.8514414586070904, 1.9501296071021734, 4.074701173479641, -3.1689884755036566, -1.9024758886116366, -0.6256199727536753, -3.5073055348952344, 1.4149999924118886, -3.3907652489302933, 4.2334196950526, -4.873702153903089, 4.688619540706725, 1.568963067573077, -1.9074524176077667, 1.087794927144527, -3.381179436515022, 3.075997135991857, 3.3628576851499155, -1.460881022552245], "sigma": [1.0285672175173277, 0.4971698540623858, 8.690654987324054, 0.39320959479346984, 9.997506411437405, 6.039464572703454, 7.145327377487666, 2.9309593245873855, 3.148383337814933, 4.680727930376468, 8.818229654166965, 0.38032900660401314, 3.7169486491971493, 7.575599248783156, 9.606289968352877, 1.0436564089724498, 0.11779414641079891, 8.205286507726164, 2.076957526438906, 3.6597964635706326, 8.918054907968047, 7.0831661160302986, 6.952657268410935, 1.1782235769626992, 1.2440044516656634, 6.992286582343386, 8.961274623493557, 8.950407409362839, 3.6523544169737545, 3.6051659896330936, 2.255795385193141, 3.4416318400625556, 5.6906300876263725, 1.158013071387266, 4.000454277207998, 1.220867138631061, 1.1165467437224141, 4.159597238620488, 1.4669892181870547, 1.9823124020505356, 9.879340190203475, 1.358995578090656, 3.1599794977790108, 9.357564544053409, 6.025091464204149, 9.990258526320792, 8.57648287952145, 4.107592781686143, 0.6217184529958585, 0.6086694270482805, 4.6243527895835435, 6.899434235563892, 5.256309105005977, 9.312344927799865, 9.555684991584421, 1.636694937947929, 8.471476981110472, 0.7038124876449557, 7.606143088045336, 9.413211998171812, 9.47314995217214, 2.352078028909349, 9.49574160785447, 7.19781055150497, 6.269313665162333, 2.994160036201642, 6.28531842539447, 3.2241109975565876, 9.470379296075869, 1.113454229825166, 9.243931677214725, 5.540930724161058, 2.7833704265299866, 3.7649327737635905, 6.736479689635445, 2.784340874510778, 0.40822634277669956, 8.136443668466889, 10.019911421631374, 0.36003197294739986, 4.0175700456400305, 3.1721116526817084, 9.519001096202471, 8.667166601739957, 2.511614394996203, 7.888378856322589, 4.432101088395726, 1.7498817728645177, 4.931825226817676, 3.3767337486053086, 9.940864045245734, 4.187725107016313, 7.870774540695787, 7.654987112169238, 5.188041975807638, 6.720422674248659, 1.688379365502114, 9.685969591560642, 6.630032684776593, 1.6067107792965152, 4.342330521649851, 8.90305718030178, 1.6451733674007796, 1.5679251059340127, 1.9961202064958605, 6.142954482766724, 8.00729384559053, 3.6027693648540757, 7.513849262278141, 1.856079669787779, 1.8930633192415158, 5.119697821604114, 8.826958305408317, 8.47062361315968, 4.171793095044702, 6.140191681092647, 6.905345000022092, 3.3207107465481456, 0.16356954290220652, 9.239168196310214, 9.330561989737456, 9.63536629131939, 3.1319286686382486, 5.409235647760484, 9.728608046380938, 4.254112973962722, 4.290267212615265, 0.7604286473949639, 2.4354546772113794, 4.858625358504577, 4.859284634376584, 5.279279014438655, 9.015603676099019, 7.899087887760176, 1.977986428460986, 0.629807430539726, 3.8638247944476123, 2.6428966987804228, 4.363477550547994, 1.2404021809635102, 0.1742201310953028, 6.922713620315225, 9.331490353853345, 3.245426168379105, 2.2581181912393244, 7.153328181227497, 7.991759163674284, 2.263009050276381, 3.414405427874909, 1.5690416207321178, 6.941604866019796, 3.9618812279499305, 4.595071377793676, 3.1097637180725823, 1.9681578692840151, 9.768483278559392, 6.486131772525816, 5.435381523949189, 4.801249742916992, 3.552502877436561, 9.97459789223468, 2.5925434818466555, 2.8595002686561566, 6.17918495953754, 2.5340572090910904, 2.1289648262834615, 2.7654809647235967, 5.147954912200162, 2.5082834525494935, 8.065775151753519, 0.7400083985639027, 4.0557563570288035, 4.149546816020102, 4.748282039967797, 1.9958428259841599, 2.498775104800799, 2.5380114780887584, 3.9087176058155104, 9.346550835430047, 2.2565180733953336, 7.862243567297844, 7.910377084873315, 1.2194142749847725, 8.92335140325798, 5.409134618712004, 6.5042996444870305, 4.264633015752682, 10.029128450136149, 6.632738647151888, 4.093911459026461, 5.979272841134792, 5.90731303008196, 3.907026736843734, 0.37748548729291886, 7.128699951369466, 7.596446004568243, 7.269541203987748, 1.511530828145653, 2.130750767662214, 2.653745951481279, 8.394250107212143, 7.036667948640854, 4.477753714513314, 0.4253681314289547, 1.340544481301652, 7.276989758321634, 6.89062689398437, 1.7369457964490076, 5.446425602339593, 1.211003799826943, 6.379931605976005, 3.816203469255702, 5.921922640643744, 0.4621603608676804, 6.395847573043188, 7.734272134630015, 1.7540966978052808, 0.6773466174186981, 1.921366179017323, 6.639941182887841, 8.975468905323622, 0.8768714256618791, 1.781131773486646, 4.919428546923071, 7.2560266121160515, 8.760248554564342, 4.9251448778602445, 9.794226736366506, 8.528613421814473, 3.5775464089275952, 0.11894582189090222, 0.334167934453805, 3.3346994392435927, 8.153731990966486, 7.145903250275495, 5.321030903743361, 7.7728576773163445, 9.21589048330769, 9.155714547667861, 9.51123682910567, 8.770504731276207, 1.239066057147249, 9.909000563740381, 1.8871282358649544, 7.92402024287513, 6.416281479786072, 6.084163497460865, 6.129069982561754, 9.142253970494965, 4.855249444619499, 7.32285490453915, 8.365794014731609, 9.939437361777479, 1.2218598557576787, 2.4529107207015666, 0.590143877333572, 2.523644215438933, 9.93633565814606, 5.942079284077256, 2.180482760614056, 8.088178250938444, 1.1024671138996145, 2.26245943301952, 0.8598271219930008, 4.932500202229064, 0.7506132711524404, 8.459775534747822, 2.9301397359989, 3.115428445738154, 7.591104238772028, 9.447422777615756, 3.5985104359767672, 6.776231368616136, 6.520334807468911, 5.393813589129083, 2.9154121204906605, 2.815104597962771, 1.5387482903813587, 9.878613999291556, 7.266548371643535, 3.4156860414849235, 6.863413293247606, 2.017552318052296, 1.187285077602085, 4.804087651927357, 6.463161030488832, 9.655646910739835, 5.809465535981383, 6.086658143524328, 3.8077045189626912, 2.0678508634719637, 8.728890022029455, 6.212163676174371, 1.2532249256951833, 4.943159145725484, 4.065074879790929, 8.736925767604514, 5.53775728008288, 1.6268382212154275, 9.802494984323543, 9.445750606187174, 7.410504937235901, 5.532067484513818, 7.902485059368003, 7.94579835886852, 7.55354558660765, 8.39980859123309, 4.690478799085316, 1.9976071155694375, 7.790472410605844, 6.405869969124127, 0.5695290610825919, 3.8953664898391502, 9.234573310498716, 7.707847113644595, 8.645806024096164, 6.613268233363597, 6.375689570936738, 7.985525680352385, 2.076931687652993, 1.8237793484961895, 6.304996944881101, 3.0666347481851655, 5.787609983132585, 4.752600238172425, 5.270884332853366, 8.220102715460298, 9.903763497282808, 5.335529230862799, 2.1614472887705327, 8.708550760472454, 3.422619760710061, 7.250497564926241, 8.23039902264185, 1.5158570138380856, 8.267471283033284, 3.139909261016247, 6.242527887433575, 1.541600917282, 0.812914125982852, 7.38063680909322, 5.674927158724621, 2.8297324738904672, 0.7480010987442974, 4.031689901498879, 1.2263806851796444, 1.3888419226055693, 4.3901263486704405, 6.114548631641182, 1.054169570646759, 8.554006563257248, 4.849664144146965, 4.287088811920829, 7.518266444935995, 7.133150549599247, 0.33158421288509643, 8.982885115071898, 8.24992917117572, 7.144575757896484, 5.975240740873431, 7.834777256281435, 6.1599032937419045, 9.045529512310967, 5.025026404005939, 2.006209076873393, 9.186018397866711, 0.6971874154088075, 7.938994698696092, 8.260421231515751, 2.313594146242526, 2.1223942940955265, 7.700458032152285, 9.59914570364481, 7.920363524916239, 4.703261085905697, 5.897100449522023, 1.47285694892486, 1.2323327806803763, 1.006803215437162, 0.2363854122104724, 4.9258251470185215, 8.06885828563585, 6.826813248071784, 0.6524712021781064, 3.955037826492499, 2.6949481554930332, 7.982206865822541, 8.798041926112912, 1.1119137075194963, 5.160286126935206, 0.46389172438937354, 6.317854549041704, 8.45355235062281, 3.0890682139548544, 8.58171393506789, 0.26451605821603097, 4.946343914168159, 8.800853812260764, 3.1843197480757923, 5.883605626851682, 8.638913339382873, 1.0876112929743775, 2.25890230017333, 1.5452490355512372, 5.039147335835574, 6.6267601271312, 2.586305992719984, 6.435139564909964, 7.666113273289076, 8.865615566096398, 6.2249219680244465, 6.684342142048265, 7.763468453794154, 9.16319927003873, 6.477067135935224, 1.8798486015772475, 4.886200209007677, 5.715117894817682, 5.399126715699299, 1.748809890250449, 9.793761950029317, 2.2389334655160718, 7.7473084924899585, 4.730326761193695, 9.24256446134414, 0.5949390077233317, 0.4364335013327624, 7.503911046648518, 7.340616846974182, 3.9436490436841107, 0.7152523221410089, 3.5371789526541053, 1.3065650503822535, 0.3618753236895954, 7.059033352798387, 5.563763612164899, 4.52515172982103, 2.4172840952367767, 1.6317562404021724, 6.85424838819266, 3.0527189034659497, 8.748409346880575, 2.6959523545716046, 4.349413456056934, 7.201017535288103, 9.451939159667436, 3.767043048299754, 1.8888577646595917, 0.5194087634095178, 2.3528190957640924, 4.869878695681822, 8.491620327869986, 9.17576925476382, 2.6426750777553267, 9.258658150881068, 8.336839302183892, 7.719298438845576, 0.5526148106797056, 2.168826213968266, 9.61929743434879, 4.435185683022917, 0.8651611809193182, 9.99057396199757, 2.2163066610896487, 10.01266133906173, 3.0718789103302, 1.5971694892517885, 9.208431902382253, 4.567552375351193, 0.7361446672474768, 9.362402518501549, 4.111885727198021, 8.190485154136525, 2.4477157398975335, 5.66016141331066, 9.80608210394499, 0.3324591147853949, 8.892049042805164, 3.0082713161163857, 9.772850778712474, 2.8145978089626134, 8.233730284807098, 3.5135131677587785, 3.243293875251784, 2.4769540448588434, 2.9917817295758953, 1.3011383311088731, 5.374289234603659, 8.1391020537308, 7.178650447478713, 4.146186691850631, 6.7344792993213, 8.104060876115243, 6.743018587128043, 2.997084913302587, 7.741892663421917, 2.5698072368820912, 1.4781775187018809, 5.526041078812103, 0.7066319268447706, 0.5873776653932993, 7.10283071531853, 0.8065329802891651, 7.618226619720138, 3.6884664547880153, 3.4553347789402644, 1.7513976336082826, 2.3380138639190142, 5.762943241081083, 3.7717781746694046, 3.9415981278105936, 0.7800720648985892, 0.3987730851444037, 2.2258265263158528, 6.765108336497844, 4.698023787275388, 1.3463175991815135, 9.546843680786152, 1.6971375903170371, 3.658147809790162, 7.614354140666389, 9.09229423213538, 0.6566436919928197, 8.604957080861272, 5.492410747409323, 4.437320709448486, 8.117664456913294, 2.2272608177039066, 0.32404535717214455, 5.391458159783485, 1.0728256501315114, 7.650473049254949, 5.6930282913522285, 9.07185638286054, 7.899446403189791, 1.8959298694370152, 4.431441006344372, 8.921535653431748, 6.3319425518260415, 2.9894580930844894, 5.277510486231162, 6.814731520772517, 4.912155291741144, 0.8255066287914735, 2.08820604527996, 3.6261728068153407, 6.875753156797575, 8.350912122888461, 7.585070356722997, 9.40064781366508, 3.4299991606069624, 0.1280192026005388, 2.264238699765795, 8.954900296858916, 3.3577595468283463, 8.008079894660789, 3.592750218280704, 4.502595339028089, 9.040124682421839, 7.595657633417549, 5.411236359963926, 2.3203132836207274, 1.016002685458125, 2.242768418151726, 2.1868818181029104, 1.8847824624254084, 0.954507259712226, 1.101590215300432, 5.7143271127694755, 8.31048872793667, 2.083960477009069, 3.550985171015326, 3.959039866068208, 2.3540234507862667, 8.737369824173602, 5.322540325830244, 5.417435922549743, 7.861061421540258, 0.8076897607866461, 8.041475610906625, 3.3850980426919186, 9.869215149215998, 7.25817896223467, 6.148376108130019, 1.3210846440129498, 1.076812975000313, 8.644653157945116, 3.4654942342659525, 1.188518917674124, 2.2199651956731006, 8.77603114309213, 7.601064846052406, 4.569113898253381, 9.07655238627045, 0.3888165852044033, 5.585035956067165, 4.885214803626757, 10.008425887766013, 8.318789913918275, 1.3505770676108286, 4.33747234868784, 1.9219738873653436, 3.477294359342588, 8.352925258712531, 3.568428416498175, 8.300408676298883, 3.871700992894397, 3.8402318802916304, 7.022989313548445, 7.3181249473305385, 4.4807717962582165, 7.898272055164238, 4.575116045194449, 0.8621992931765575, 6.707336996488752, 6.497644166485073, 9.020305350839953, 2.5342396863641103, 4.470440849998511, 9.277481267035467, 3.1227348581902614, 9.643746387729854, 5.343054842690282, 4.225579928882238, 10.035239775721701, 9.370886995835694, 4.729422656318594, 1.471107899223495, 3.389683760328809, 2.4542098725264885, 7.199352375677269, 4.367050997076112, 4.155020376050531, 1.1374807939154286, 8.860745840304443, 0.39222889680143636, 3.8263391940148272, 8.959331190542818, 1.6063960293642998, 7.8394393818521095, 6.091816049075071, 8.18143453667771, 5.389804033104811, 8.874742088342025, 4.6361180062272265, 1.461661730394349, 5.3004292770471455, 3.414168274040058, 5.497122631822034, 2.170060700507226, 9.168946058616404, 9.1573289503391, 7.391221985030329, 5.118940495647776, 2.6172867429767455, 5.335081183787201, 9.484864858084881, 4.0214336528856895, 7.232134926420241, 8.25199468820333, 6.675315084376574, 2.9570053490494606, 0.9826963408078125, 2.7070792173272227, 7.779451892081017, 6.913050940125969, 2.7876481008431884, 3.289928364154934, 6.561609747193243, 6.923613907969501, 6.013791562370133, 7.9902758234406095, 3.3017973630426734, 0.3608379021415141, 1.900857940771209, 9.29846228190327, 0.7838365394759838, 0.758915403112319, 4.84946700980238, 1.9532252462059452, 5.299135865336402, 4.907556583509939, 1.9007758943694397, 4.673326287855507, 8.07899541069604, 7.568874058664793, 0.1949127244580994, 7.940330909984993, 2.297992917484839, 0.8228454373102022, 7.131715307744023, 0.8965915903409881, 10.031116288436367, 8.837807515647777, 9.679690647727316, 3.5446996236536568, 3.2258001156376372, 5.063159269006142, 2.312121893849796, 1.245487664220546, 3.4808640212124584, 9.087167741144404, 1.3859555703476611, 2.8697328267457842, 6.141041446758433, 7.198701435793394, 1.8776078880729297, 2.7676658343757543, 6.94628182722235, 8.872783921740329, 7.568548192030969, 4.6991109086701535, 4.94600604019536, 3.0057770029917874, 4.906430956699969, 8.376167306955082, 7.357193154003804, 1.7428239623762687, 8.99053942182506, 6.201386946949291, 1.1676110868357448, 7.09309774263895, 7.037817208623076, 5.707173032640342, 6.999148253751438, 7.717844956879295, 7.704326177626826, 3.109762072957505, 6.418706296954514, 3.699718293445189, 3.056105156765261, 5.476912903544914, 8.088787850324389, 3.576465093133847, 4.855902945799196, 2.341820998317504, 0.6252318842477221, 2.4236698606586415, 1.9007606396924326, 2.499020543088991, 9.825442210981475, 9.59655436051212, 1.7193960023402621, 5.990845808382412, 2.0895634938367222, 1.617226547582994, 0.31995669507931634, 3.095826759055491, 9.468969156169049, 5.8333597999321425, 4.473076691362721, 6.879796552228763, 8.770028897691748, 0.10162322004391258, 4.895967156193624, 6.245091239522512, 7.55691132399412, 1.0596165545143277, 8.004473225250226, 9.20493416601932, 5.100414276096492, 0.6244904625745628, 5.0201102523826915, 9.926196068523103, 6.629748581025522, 2.269734120186806, 3.508810377170448, 5.727899584882072, 8.861233575449898, 9.209437185231957, 3.930509921859424, 9.671393788401122, 2.2340267413029733, 8.87427005516472, 2.8167133858996842, 3.586508866050464, 10.074078597756792, 4.506315101912281, 6.314229220137502, 7.2324515086566015, 6.899778416656618, 4.788458691699043, 6.0742933276754325, 5.655824555777082, 1.3293339890476985, 4.836376322777575, 7.072458939717462, 4.579471240643403, 1.0690978038747323, 4.9540283896179655, 3.9660584524485065, 3.8965707169146238, 0.7407867656562271, 8.852279825379297, 2.575524330887934, 7.571620283701305, 2.0829306132895984, 4.93405695002824, 5.413224294404412, 8.675221452712721, 2.872109274656817, 6.417268883159431, 3.209397496403613, 2.7855094395519897, 7.018974151859524, 9.236099844761005, 4.306744505040502, 1.46532897229944, 1.4308299324522888, 2.7909916966779034, 6.627946156964458, 3.2301341806250137, 4.100736912692927, 6.080668706720797, 4.318282020788709, 8.39425229904632, 8.534326060750724, 0.26042689882467707, 0.8027412246696185, 3.1002689577987455, 9.299606512855071, 0.9618875808439885, 1.2449136289529772, 7.843646203769541, 2.7818694724708948, 4.305291525646274, 0.2390240802575804, 2.0494164706834836, 1.5809287451286658, 6.606233793034926, 0.12797322321310914, 6.258603509877679, 1.4439604846435372, 2.3376565537134186, 3.4992832789566672, 2.793609529950539, 8.537109210242674, 5.9978567661421724, 3.1453916154112016, 1.2160046938601587, 9.554154752158757, 5.698678463336903, 9.626228584743215, 5.925429328416783, 4.768323650874749, 7.699929418873253, 5.8997402683154085, 8.183695855577222, 3.1869247322987513, 7.698379259882703, 7.1396115527904245, 5.868232864431857, 8.116426423789378, 7.525970164554057, 6.761366849878951, 8.277871876620074, 5.373104087781639, 6.367054118495441, 2.8979643458677384, 0.4979499928525465, 7.663998976712596, 8.376033327530001, 8.303239508650375, 9.7769012994981, 0.37893636716396883, 0.9894363446036901, 3.7679527526151557, 6.184249093875229, 9.603239887619354, 1.0034742044049572, 2.9550872177191025, 5.586649248872199, 0.3354234525464538, 7.571829239397033, 6.5479361496065165, 8.98263255766604, 8.733530656793613, 4.9025970545411806, 0.811078812371192, 8.731057656532572, 2.4905261067385887, 2.7297234434000806, 8.205469195816546, 7.954181414036506, 9.44921765826025, 3.047788511995108, 1.0886802320314148, 2.027194315828745, 2.0167723812392113, 7.233306912245165, 5.378292589077715, 4.941277292640601, 5.102320352664001, 4.886958432314236, 2.175767410193876, 8.975329232692117, 2.3361902692007197, 4.8834870977725915, 7.40783930707045, 5.604123435278871, 2.3907360261717825, 2.0133138766052503, 4.456958501319945, 6.105035384421223, 4.715970763191467, 0.8901728208231173, 5.59694211995484, 5.6314510652481, 3.8881337255857007, 0.9326970814888523, 8.186138925410257, 1.364391958455573, 10.030864294018626, 1.2487860345674662, 0.24782505248701617, 1.1610794971027005, 3.8147634429013233, 3.443792294087824, 4.890096665489347, 1.468460535229864, 5.671083357271366, 0.6301405561872963, 5.170658370137937, 8.769365353154877, 5.238649526564748, 3.2817101979644927, 6.370127720501165, 4.406412153651183, 1.6599448622870194, 2.821526068760256, 8.0269488465328, 2.6691869732193596, 9.416799379771973, 7.060269065096459, 8.967820902012141, 2.9555564782832855, 2.0880168424083676, 0.15985080156740486, 3.1333366816891774, 7.083564880540296, 7.050527280385193, 0.6685061282022197, 7.915274989730119, 3.426830663826188, 2.766007053410282, 4.163026180857392, 1.9490981845838518, 8.616287975082855, 8.575079095180465, 7.953434550736091, 6.743110638009427, 7.337498846860499, 4.077824979107334, 2.431608687343716, 6.583138107464876, 7.571044392145888, 2.237888984813375, 4.125094470650856, 3.3065715537985074, 9.057987943337146, 1.1381659486774631, 3.6786673184956142, 5.590622527677247, 3.8967566743590774, 7.42877849568991, 3.136196091230816, 3.0394642396642593, 4.043746534149983, 2.7641903684988467, 8.496073657842027, 8.292723138402279, 1.1932023019752747, 8.811007319055463, 9.400077689800566, 2.39583588692606, 4.010476254277055, 6.688509481890661, 7.7981060154990685, 3.139743994909866, 6.997707791200202, 5.094773228307121, 7.3747381688773155, 8.933826048256693, 4.271838739810672, 2.8201715826994875, 5.375959601682941, 4.766042079598097, 1.5731957425712484, 5.500160308979367, 6.530799010136352, 3.681421940011349, 6.5965604504836, 9.93622892753064, 9.775859041093378, 4.620626957735701, 6.626060756325408, 1.329022241887201, 8.48865734922862, 2.0254806013778124, 4.540996460505095], "expected": [0.12362180938158751, 0.028882801374417788, 8.825407293302057, 0.018066663357706646, 11.6792007031927, 4.262129245314047, 5.965872978077363, 1.0038049243933633, 1.1582570430101475, 2.5600976775419397, 9.086414598816896, 0.016902410197585246, 1.6143691936809381, 6.706002695924419, 10.783037676322452, 0.12727550470304794, 0.0016213514262090685, 7.867146531275831, 0.504063173986515, 1.5651054558764148, 9.293301412091452, 5.862523454765153, 5.648477221936763, 0.16221281351824976, 0.18083130148383236, 5.713052020906535, 9.383596239445, 9.36085132357678, 1.5587467715066299, 1.5187289439474299, 0.5946058077154688, 1.384071611212535, 3.783994099906378, 0.15669554972364208, 1.870029084537184, 0.17416727122014578, 0.14567450724361955, 2.021772576860502, 0.25146849521177345, 0.4591704542691552, 11.40474606610187, 0.21580714847610807, 1.1668049660071609, 10.231879144882951, 4.241866803160768, 11.662272717888671, 8.595045678315529, 1.9715350531060343, 0.04516658491898327, 0.04329051129261413, 2.4988009169591443, 5.56232931912029, 3.2284311746481267, 10.133228750987795, 10.669728981456789, 0.31301504872504793, 8.385867754432265, 0.05788201953136889, 6.760187184796976, 10.353934623704072, 10.486210291175944, 0.6464473944202284, 10.536285152268785, 6.053834757384857, 4.5927175456483695, 1.0475620525547422, 4.616196724377614, 1.2146459573184185, 10.480077287078243, 0.14486867163983122, 9.984887887517573, 3.58752701304738, 0.9052567173142388, 1.6563197897363344, 5.30268401607988, 0.9058880797045489, 0.01947295191932135, 7.735688674349383, 11.73160693571152, 0.015146485722619113, 1.8860649908572125, 1.175781627403173, 10.587964895750803, 8.777766594088858, 0.7371157078468104, 7.271186093145465, 2.2953507220545317, 0.35780561697274715, 2.84213756338476, 1.3323654914454501, 11.547235087776178, 2.049208131561019, 7.238768425281893, 6.84728913394901, 3.145116243241337, 5.277435278764154, 0.33309630156048753, 10.962659915950777, 5.136426499190426, 0.30165126697637756, 2.2033094315168267, 9.262070116260416, 0.3162664180168589, 0.2872634469784469, 0.4655894394432194, 4.409449100421554, 7.492060426630428, 1.5167103885754718, 6.5971247363042655, 0.4025529065073361, 0.41875501393574877, 3.062798290816939, 9.104411725317862, 8.384178351189272, 2.033645551061538, 4.40548368154761, 5.5718639274649, 1.2885219891115263, 0.0031263285678732535, 9.97459993436697, 10.172913323389222, 10.84841267230741, 1.146181682255017, 3.419019218182858, 11.059389460717552, 2.1146951883019485, 2.1507920565079206, 0.0675688734495638, 0.6930903353428287, 2.7583956810607217, 2.7591443154848885, 3.2567091170653444, 9.49772001979784, 7.290941791267977, 0.4571685580456107, 0.046349526246733844, 1.7444743541601937, 0.8161878322494782, 2.2248217979226528, 0.1797855493365731, 0.003546715978161744, 5.599928360433683, 10.17493777540565, 1.2307595272672787, 0.5958309765101132, 5.9792407356484665, 7.46301843595804, 0.5984147926982101, 1.3622597199555686, 0.28767271153466273, 5.630533112245935, 1.8341406773100244, 2.4672562789709884, 1.1300158202465942, 0.4526365303221351, 11.150234828989237, 4.915880014639275, 3.45215118096613, 2.693632434986841, 1.4746828031520316, 11.625738040850417, 0.7853836160703696, 0.9554545269067589, 4.461615385133343, 0.7503477243007383, 0.5296228471505539, 0.8936574619952147, 3.0967005277649355, 0.7351618554702536, 7.601896655151408, 0.06398866306978868, 1.9220888271215073, 2.0120143625748286, 2.6345276071219796, 0.46546005198095997, 0.729598747789192, 0.7526913112727578, 1.7852470701874872, 10.207807792278851, 0.5949868559601401, 7.223085019859666, 7.311796780396656, 0.17375299070449432, 9.30434340371157, 3.4188915043781325, 4.943457672163986, 2.1251670252840618, 11.75319999857926, 5.140620087323504, 1.9584235845352274, 4.177596412518019, 4.0776477733251015, 1.7837028471090532, 0.01665061419660224, 5.9381396946689256, 6.742961026629166, 6.1750964319412684, 0.2669707966372452, 0.5305117975767019, 0.8229025882696949, 8.233671745917151, 5.785805826412888, 2.342880537799506, 0.021142660589734005, 0.20998689763051748, 6.187757232421483, 5.548137411662909, 0.3525350246469526, 3.466194192213086, 0.17136445763902458, 4.756218360887755, 1.7017383380860196, 4.097841899371519, 0.02495830722393288, 4.779978565026183, 6.9898625674145665, 0.3595313794152992, 0.05361072392982958, 0.43137008353844347, 5.151790617318719, 9.413346225151308, 0.08984658514188976, 0.37069936423444566, 2.827867475986154, 6.152157890885059, 8.967318520368215, 2.8344432064764913, 11.20908200633065, 8.499367307814605, 1.4955477768453331, 0.0016532103752116881, 0.013048460869900995, 1.2994008067259104, 7.768597195159118, 5.966834647757836, 3.308425058417891, 7.059780048607192, 9.924402042485452, 9.79522073060064, 10.57069958401578, 8.988328024969732, 0.1793984387987326, 11.473328948787895, 0.41613339013630346, 7.337040083741151, 4.810570183240446, 4.325451944656949, 4.389538873825481, 9.766440365604163, 2.754563786056466, 6.266002982207315, 8.177942885770143, 11.54392087541778, 0.1744506257666189, 0.7030613468078406, 0.04069542145516599, 0.7441937095850859, 11.536717201163459, 4.125785293791861, 0.5555652251644099, 7.644184608481296, 0.1420237665223729, 0.5981241538632414, 0.08638772148324274, 2.842915573212045, 0.06583581502764319, 8.362717361206697, 1.003243611906501, 1.1341364304818982, 6.733481158202886, 10.429330746564718, 1.5131266211957914, 5.365450486291826, 4.9678621017294455, 3.3995513478725585, 0.9931838501810548, 0.9260166837828839, 0.27667180658099966, 11.403069492890046, 6.170012968338822, 1.3632817752022115, 5.504400709143276, 0.47564107272715034, 0.1647175059633622, 2.696817665228141, 4.881122331897504, 10.894128437416098, 3.9436839082548816, 4.328999740123301, 1.6941669993866266, 0.4996526167607996, 8.903233889205595, 4.50936634064624, 0.18352185369016377, 2.855215711665221, 1.930931372449581, 8.919633924861564, 3.5834188381857706, 0.30925624157307, 11.228015321173746, 10.425639139675168, 6.41690102871197, 3.576059018948761, 7.29721439056764, 7.377425262381623, 6.667015245347625, 8.244579661478475, 2.570775152622085, 0.4662833325291807, 7.09181383973478, 4.794970909131624, 0.03790194683515463, 1.7730720623855407, 9.964681129997812, 6.942180839871707, 8.734553598394703, 5.110483789671531, 4.749895616811005, 7.451380833466939, 0.5040506322765789, 0.38866400936085627, 4.645147404376936, 1.0988890449237303, 3.914066979473281, 2.6393215874603086, 3.2463602418422868, 7.895583445444951, 11.461204475195728, 3.3264786940638613, 0.5459074696303355, 8.861791225080681, 1.3688222184224157, 6.142785650873118, 7.915375477167725, 0.2685011895937182, 7.98684266463496, 1.1520303869670592, 4.5535564137770175, 0.27769858011553333, 0.07721809438466587, 6.365278479853385, 3.7631395348228014, 0.9356652419286895, 0.06537838837114061, 1.899345537617583, 0.1757439337101471, 0.22539037895139621, 2.2520798148441767, 4.36876360975759, 0.12985261224359326, 8.550054782029006, 2.7482299334361784, 2.1476064522517477, 6.604883547923649, 5.9455566217549265, 0.01284746458712701, 9.428908686005096, 7.952985287342336, 5.964617939383788, 4.171964019240245, 7.17270627920675, 4.433814580833091, 9.56087695238462, 2.9505734843918625, 0.4703077345207157, 9.860169049646808, 0.05679744734651006, 7.364796700000652, 7.97322697919405, 0.625466555883564, 0.5263587875633563, 6.928877059519136, 10.767004800084036, 7.330269960778, 2.584805771499381, 4.063561060929296, 0.2534841888320464, 0.17745397875188154, 0.11844559852622794, 0.006529367044197968, 2.835226256520328, 7.607709399547968, 5.445851370297439, 0.049745343652762376, 1.8278098865242367, 0.8486538165284433, 7.445188476675815, 9.044858843370028, 0.14446808214451792, 3.11155373241355, 0.025145657102592048, 4.664112160538973, 8.35041831429662, 1.115025337793837, 8.605533630914127, 0.008175867105745744, 2.8588960019014045, 9.050641306732272, 1.1848491995063473, 4.044984374866736, 8.720632276192916, 0.13822199460771742, 0.5962448410352621, 0.2790144536978293, 2.967179720978931, 5.1313571114153875, 0.7816089996149388, 4.838889220392062, 6.86720801976014, 9.184331055009725, 4.527907671202002, 5.220920520699081, 7.042734627052952, 9.811242303653348, 4.902149325922668, 0.4129290969170092, 2.7897947648183594, 3.816630587093369, 3.4062520401822556, 0.35736740661762073, 11.208018174607606, 0.585749753780102, 7.013445690175201, 2.614640734547748, 9.981934493203134, 0.04135943797814473, 0.02225696279022307, 6.57968486310524, 6.296436839802432, 1.8172984530238783, 0.059778951304688584, 1.4619879846526032, 0.19947653375046448, 0.01530198169648046, 5.822643583330689, 3.6171546622806865, 2.3927428696565527, 0.6827868183943421, 0.31112886422658625, 5.489710167895763, 1.0889385457981131, 8.943096786097668, 0.8492863898539466, 2.2105030911328245, 6.059230530121343, 10.439304705000659, 1.6581770707316597, 0.4168965014835851, 0.0315245056201175, 0.6468548096505422, 2.7711882314073892, 8.425794739880166, 9.838178693824048, 0.8160509545576062, 10.016727005300192, 8.121431761995401, 6.962823756771884, 0.03568410262276538, 0.5496411589235869, 10.812259146088142, 2.2985468090409675, 0.08746288297863627, 11.663009186310191, 0.5739703291270903, 11.714635858060324, 1.1026506143061106, 0.2980792532838532, 9.908344559538042, 2.4377929184966596, 0.06332221233687244, 10.242461891297904, 1.9756582054308574, 7.838789351656636, 0.7000864953383401, 3.7435821836835603, 11.2362343722346, 0.012915351415022043, 9.239180201823185, 1.0574595032660552, 11.160207623648416, 0.9256833016220661, 7.921784286036886, 1.442490328698231, 1.229142804020415, 0.7169116492446209, 1.0458985247188488, 0.19782295346767767, 3.374984716000416, 7.740744396746498, 6.021647824661774, 2.0087571968359845, 5.299535231165555, 7.674235608917165, 5.312983322891609, 1.0496096964802648, 7.003643486824753, 0.7716686106030496, 0.25531887659475133, 3.568272040841263, 0.05834669361163162, 0.040314808074600465, 5.895120234560736, 0.07601057206370543, 6.781683446746949, 1.5897228447311693, 1.3951149802086122, 0.35842579419946835, 0.6387396901445886, 3.8807746397986738, 1.662348306686933, 1.8154087528771685, 0.07110484441129489, 0.018581527637267753, 0.5789117530664515, 5.3478504094679655, 2.5790523751986534, 0.21179942902908253, 10.649993975725152, 0.33656104292658623, 1.5636956857617479, 6.774790700257054, 9.659990552902475, 0.050383611236753265, 8.652212079065945, 3.52497268222562, 2.300760307962499, 7.700021374081172, 0.5796580786744442, 0.01226990911467103, 3.3965828898439967, 0.1344893938024881, 6.839215970634329, 3.787184151202823, 9.616611504033575, 7.2916036333653285, 0.4200241644048747, 2.2946670702343233, 9.30055723855948, 4.684936092085507, 1.0442745130574107, 3.254527524765368, 5.426592876387065, 2.819511791141576, 0.07962892798800245, 0.5095378338326148, 1.536479366833845, 5.524211439258486, 8.148873316884147, 6.722781032748307, 10.326313461506862, 1.3747311282971058, 0.001915049370066533, 0.5990652897527734, 9.370251523098572, 1.317434172287579, 7.493531439510468, 1.5082863057409295, 2.368948251920954, 9.549454851509733, 6.7415615089886, 3.421548868936116, 0.6291047897613897, 0.12062003517605355, 0.5877580728313266, 0.5588308417898277, 0.4150994933015882, 0.1064604287285056, 0.1417979259311712, 3.8155744709450814, 8.070173442896959, 0.5074680394594203, 1.473423039235291, 1.8315108212678093, 0.6475171999101684, 8.920540633422094, 3.3103023330459873, 3.4293933821373384, 7.220913095952983, 0.07622876674423225, 7.556161597962671, 1.3389743034212793, 11.381381277266646, 6.15580825282476, 4.41723588469595, 0.20393465285878237, 0.1354909534472731, 8.732224353489515, 1.4033309395928206, 0.16506003643956432, 0.5758668387725325, 8.999658924068038, 6.75116331925153, 2.4394600346494397, 9.62657006749515, 0.017665230254607634, 3.644867001877365, 2.788669636313402, 11.70472714872511, 8.086303774423175, 0.2131417275980046, 2.198382091031733, 0.43164300252801113, 1.412903988794789, 8.152802652001455, 1.487934169974381, 8.050608184326045, 1.751593636673096, 1.7232355140454165, 5.763333541268804, 6.257910959481343, 2.346039884392051, 7.289435824786044, 2.445873363373455, 0.08686504801407233, 5.256903360809603, 4.933346132814911, 9.507628803691151, 0.7504557931603566, 2.335234214003291, 10.057496990009982, 1.1394623017329344, 10.867291098910352, 3.335869118534084, 2.086423093663536, 11.767528166091948, 10.261034327614848, 2.613641360234857, 0.2528825103087053, 1.3426045185402473, 0.7038062783740597, 6.056428587382915, 2.2284673017931844, 2.0173258557512868, 0.15118819563041397, 9.174244244880478, 0.017976656167186463, 1.7107898769278937, 9.379526636976607, 0.30153309335439027, 7.1812451324765725, 4.33633973918647, 7.8214749473794845, 3.3944990318840684, 9.203250022327165, 2.5115319232922593, 0.24964535606810437, 3.282855956290548, 1.3620704899980063, 3.531023354348188, 0.5502670437586388, 9.82355259270287, 9.798675365320953, 6.383549507192852, 3.0618922353550886, 0.8004465734949042, 3.3259200404015847, 10.51216172765818, 1.8896943081614517, 6.11171056525215, 7.95696812951955, 5.2068285649236845, 1.0217248572812876, 0.11284138731007702, 0.856311287091573, 7.071763660044777, 5.584306580774692, 0.9080413765527503, 1.264743983967337, 5.030956164120868, 5.601384978305435, 4.225970702492656, 7.460248290381436, 1.2738860205930447, 0.015214372235980338, 0.4222105313422864, 10.103038467184136, 0.07179277635593104, 0.06730021846030612, 2.7480065119870387, 0.44579418298252876, 3.2812539855627048, 2.81423506760856, 0.42217408452893534, 2.5520075060452467, 7.626836949700464, 6.694101558246715, 0.004439255312794492, 7.3672760448111605, 0.6170595963651939, 0.07911635485272148, 5.943164283846291, 0.0939331877935946, 11.75785958123756, 9.12680593543273, 10.94845140241385, 1.4682114862542848, 1.2159190015094175, 2.995524782911657, 0.6246707796270661, 0.1812627648101151, 1.4158063477868106, 9.649100475575064, 0.22445452007275968, 0.96230484044953, 4.406703150911461, 6.055333435350326, 0.4119452896393354, 0.895070088868998, 5.638122900694596, 9.19918916997434, 6.693525161449457, 2.5802460972975365, 2.858505445330373, 1.0557066416781737, 2.812944235766945, 8.198236186242958, 6.324905704622066, 0.3549251577654049, 9.444984257994417, 4.493734406036289, 0.15930380871901434, 5.878975197532963, 5.787695907955506, 3.806026596731748, 5.724270188139665, 6.960201915925664, 6.935839927438228, 1.1300146246537837, 4.814206855776425, 1.59943668554086, 1.0913557135829117, 3.5051080343604357, 7.645336923799988, 1.4946438528410977, 2.7553053470612574, 0.6408215834845112, 0.045678514654208364, 0.6863990338946252, 0.42216730823986653, 0.7297420822268437, 11.280645470724567, 10.761192358270259, 0.3454471105031198, 4.1937836567109565, 0.5102005042725397, 0.3056127457893523, 0.01196222986329114, 1.1199097834774672, 10.476956551467406, 3.976191274046612, 2.337988806570456, 5.530710549529599, 8.987352748756331, 0.0012067453745719385, 2.8009588635184297, 4.557296810312574, 6.672957996743355, 0.1311979981408418, 7.486783104116427, 9.900818805880077, 3.0397694389887375, 0.04557024455071942, 2.9448030187794436, 11.513183798745384, 5.135986306256511, 0.6019767413516702, 1.4386314047939912, 3.833721237190456, 9.175254255681581, 9.910508062002647, 1.8052091780274684, 10.929690713865613, 0.5831851727686753, 9.202271036397255, 0.9270753941127191, 1.5030504453487021, 11.858790829384484, 2.3728640227373323, 4.658760948627046, 6.112245649668315, 5.562884291098952, 2.6792992937590507, 4.3114292066685245, 3.73784766073423, 0.2064894927217677, 2.733190558055849, 5.844812835615, 2.450532185813359, 0.13355637224468667, 2.867785873598919, 1.8380103826129912, 1.7741684991026208, 0.06412334495697616, 9.156721524902908, 0.7751059185218157, 6.69896009974463, 0.5069665963735506, 2.8447103631883204, 3.4240632903291357, 8.794089450061506, 0.9638992844986667, 4.8120508971801454, 1.2035849763425297, 0.9066486268713693, 5.756745434685327, 9.967975853840382, 2.1673445378498477, 0.25089962492964185, 0.23922456458084582, 0.9102209516404718, 5.133194053486856, 1.2191885234790496, 1.9649592766460484, 4.320484225470098, 2.178972469901691, 8.233676045728394, 8.510757219722072, 0.007925039177147911, 0.07529755466374836, 1.1231260041721893, 10.105525097821992, 0.1081131133701716, 0.18109571820740608, 7.188954440168647, 0.9042806471702626, 2.165882377399817, 0.0066759496190178435, 0.49078375996120516, 0.292048063702277, 5.099617672475187, 0.0019136739985188282, 4.57703905034606, 0.24363538034259785, 0.6385444725080439, 1.4308296862513235, 0.9119292506525489, 8.516309051636698, 4.203605189607242, 1.1560568425937592, 0.17278269423421347, 10.666311972074906, 3.7947052311187224, 10.827846229060388, 4.1026964398768255, 2.6568142390529923, 6.9279257990381105, 4.067199956321115, 7.825799199644002, 1.1867885625111299, 6.925136603229674, 5.956332128960865, 4.0238744120352425, 7.697672877261199, 6.618426095258745, 5.341936719184353, 8.006950422385595, 3.3734963661148645, 4.7370374876653525, 0.9813316704142869, 0.02897351593465496, 6.863420621454972, 8.19797392161856, 8.056100397832035, 11.169460608654727, 0.016778854714287295, 0.11439458240798495, 1.658978034753422, 4.468931391479574, 10.776191346619672, 0.11766360894287548, 1.0203997552997712, 3.6469730176803314, 0.013146695038355296, 6.6993298502421315, 5.010010208360809, 9.42837849838472, 8.912703051815551, 2.808549864571404, 0.0768698178929021, 8.907656296444532, 0.724789571863676, 0.8706969801893961, 7.867496854198737, 7.393000283174335, 10.433293982369362, 1.0854239361098121, 0.13849382609140068, 0.4801981677908148, 0.475273401192573, 6.113691562177525, 3.3800146992781457, 2.853042173014392, 3.042041848886875, 2.7906606530104643, 0.5531649749105002, 9.413053254026945, 0.6377436754636255, 2.786697502402346, 6.412285416506431, 3.669823047828964, 0.6678716227520477, 0.4736447336456859, 2.3211698448729563, 4.355180007900672, 2.5987945485782826, 0.0925930519774809, 3.6604238005655687, 3.7057009458686747, 1.7664938333449591, 0.10165084067209885, 7.830472351741722, 0.21752443095168258, 11.75726884384049, 0.18222409651075674, 0.007176623332333635, 0.15752651001633078, 1.7004542945472134, 1.3858098341055045, 2.79424593245204, 0.25197316889150867, 3.7580434826282656, 0.04639857075974839, 3.124074831682158, 8.985992825479912, 3.20677454836231, 1.2584332724463618, 4.741612062314624, 2.2688196345783576, 0.3219712280478568, 0.9302461331492569, 7.528886147821699, 0.8325066903405854, 10.36182791077231, 5.824682316310209, 9.397310822190354, 1.0207238549613797, 0.5094455041948304, 0.002985790801925918, 1.1472124857647967, 5.8631835641172945, 5.808619570357214, 0.05222043974447146, 7.320854141801678, 1.3721924575401745, 0.8939975025199118, 2.0251072260519862, 0.44391229419753153, 8.675013319337513, 8.592232263244355, 7.391612006724829, 5.3131283820011195, 6.291089027299488, 1.9430630930757922, 0.6909030528582896, 5.064023023727747, 6.697941103098336, 0.585203367192019, 1.9883715338509274, 1.2775726016431566, 9.587231529765967, 0.15137038509744188, 1.581287242498103, 3.652162387128282, 1.77433784170489, 6.4485869103718185, 1.149307279556115, 1.079502904854796, 1.910722380773758, 0.8928235514833418, 8.43463467431209, 8.035706602542833, 0.16636344467551947, 9.071536724342494, 10.325060973523097, 0.6707240373180714, 1.8794104511811487, 5.227432495079134, 7.105718677590364, 1.1519091181340317, 5.721914259090571, 3.0330491997278672, 6.355108223564858, 9.326199966577807, 2.132354656293148, 0.9293532099905478, 3.377082980235288, 2.6542723558755585, 0.2891979858516552, 3.534926877444183, 4.983820309827973, 1.5836562953826887, 5.084694121909317, 11.536469360439055, 11.167079313533769, 2.494775981193254, 5.130274068746913, 0.20639265480828975, 8.419915745461335, 0.47938662772381313, 2.409528490709658]} +{"mu": [-1.8072314920996657, 2.2893311548130315, -0.6425607088456973, 4.82083944273613, 3.609367929675786, 1.9146508101359032, 1.7129910712524445, 1.604222087336474, -2.3597192800139366, 0.38075478974188925, 3.8059237003784574, 0.9658309446178945, 0.5501377477879963, -0.36753413470692475, -0.13167719043801895, 2.4513997331465305, 0.9597520936032558, 4.62987955225481, -0.06212011991269506, -3.9736520082521842, 4.714522284537681, -3.2921751384206166, 4.012590683808451, -4.750741823747688, -0.9179738315456252, 3.313015783244989, 1.3841780608822951, 2.073636960353679, -1.6301139332608159, 0.34410968445755064, -3.2078889333214953, -1.5597878793489626, -3.184519114255121, 1.7430542479856985, 3.510184826348416, -0.9399165967784384, 4.674247631950912, 4.347756635566654, -0.8653192934881462, 3.8152064900203406, -2.013172548018428, 3.8363740832931423, 2.2462778256289475, 4.416417059540759, -2.202214342422738, -1.6281585649585684, 2.1557382027889727, 4.993168388496246, -3.25683822857055, 3.2675101787349536, -1.264770749178056, 0.9141601213060309, -1.333806288584889, 1.5304341787832252, -4.848995727871421, 2.8069797344608505, 0.0071895197217388684, 1.9762253529447191, 4.095609251290041, 4.796739436898221, 4.181896883125495, 3.6095042956616403, -1.6951561389168135, -3.5677536990091143, 1.0579898317555934, 0.2736660553934591, 3.6710207378302346, 4.08771951844402, 4.649809618675242, -3.128734129440277, 4.478849931253096, -2.670845551369455, -0.8993189705094036, -4.92531973227825, 0.5370173052807328, 2.3473633804098046, -0.49657149239505216, -0.0760425310622228, 3.4541592830411343, -4.69622017632373, -0.321458026864633, 2.550387052270753, 2.014024672427973, -4.445378644904656, -4.829447467076848, 3.801198505921345, 3.953014541519261, 0.3818636132521718, 3.945163723332305, -0.16868053791191695, -3.8404515088339872, 0.8266017370984393, -1.07191044077262, -0.6544565308099273, -4.684133984914923, -1.6819805535218557, -0.6984140649648083, 3.865224979337839, -2.6962276711362843, -2.7780840185630398, 2.174670638234856, 1.6384881700305893, 3.3975178885276343, -2.7507999897701807, 1.9590076604298954, -2.3778069407326163, -4.8987812728517985, 4.502282137170905, -0.6913088426389304, -4.873895288955957, -2.1995847610658426, 0.933529039024787, -4.080762861258178, -1.9859934930365073, 3.463449956754287, -0.8856564884861404, 3.79878686095061, 1.4096906555775233, -3.188096373231425, 1.385298547040616, 1.5864248655818747, 2.8005425808938327, -3.589567945063201, 0.8139924370200706, -0.9045504815295562, -2.927210177149786, -4.2429782071756525, 1.114094562995831, -2.3213421750156185, -0.9821783032272258, -2.7826280499582, 4.719379267062667, 2.4633994734684705, -4.293794555169032, -0.3997007351605353, -1.9861579321090241, -1.4260639326880211, -2.3958510335014047, -4.071134951554429, -3.6384171583951144, 1.0888207273249693, -4.223791074417931, -0.20886886399976845, -3.8960674027123057, -4.195863135530857, 3.3901699996534465, 3.1440388662345278, -1.415839283711108, 0.08011059264884679, 1.2676450131066161, 4.220994903468451, 4.716794159836089, 0.03176421977985289, 4.9353530955233875, 4.232434589405894, -3.9607071437314367, -3.3303371829643638, 2.4077714648388584, -3.759753631802724, 4.237437147082041, -1.2260216877701104, 4.226801239647354, 1.0165139972229476, 1.546497538560736, -0.8324095835842105, 0.992629453554553, 1.7244489656382775, -4.233795176318525, -4.1935982198615465, 1.7286141798091599, 0.5551159105390777, -4.058967827564378, 1.411263119299008, 3.082953253293425, 3.3867211503058776, -1.3604793769212886, -1.9258583265905238, -4.645930241834954, 3.376844663802016, -1.1775013097404017, -2.63929862557338, -1.5540025419422987, -0.0730295597466295, 3.7982229211071665, 4.377983783075866, 1.5630361799412205, 0.373180794639584, -1.0367723791979602, -4.600397225524641, 3.6518389359073904, -1.3867064682867767, 0.8977656598305543, 1.812813669727234, 3.590575644714354, 4.635068998536646, -3.6964076902946017, 2.831914597931217, 2.3058065674507064, 2.9080435310923445, 1.0425555867886551, 3.637261379572612, 3.713625693835933, -4.657603337886215, 2.051682841053558, -2.1191851795988126, 0.7964141672753557, -4.121462735765191, 4.272674899762794, -3.9850155464233494, 2.8668313508913945, 4.502272320761072, -1.1112726224737801, -4.3055307084414665, 2.0214018106499667, -2.1868536669032403, 4.642885299757541, -2.790736360315398, -1.1916471715456343, 2.5777366681994494, -1.4361357708313593, 4.897837951188835, 4.031622107514687, -4.732683731476753, 1.5847330527833767, 3.2834129207494804, -2.7025528248794215, -1.1729486623433028, -3.9508779884315413, 1.7843964163505355, 3.3304080879782205, -2.614647413473233, 4.678024929637788, -3.441800929484875, -0.9533575477857434, -2.3073581841588653, -1.1624446764821306, 2.219437404553979, -3.059465090133494, 3.583366192295033, 1.9472025959108663, -1.7022591964451674, -1.9490356114001806, -0.18954898875640858, 4.019816411491757, 0.010101980000029265, -2.780212678845755, -2.659642158926264, -0.5530351106413889, 2.6634576846824265, 3.5263656280605087, -0.9290995495509993, -3.059124278650318, 4.945122944484151, -2.514139907146409, 1.6741410417466724, -3.8341417135702183, -1.0853948354936893, -1.651859540369427, -0.3514739799478832, -4.854538757180712, -2.400605901233195, 3.4451631551267, -4.183614614950355, -0.2783367363558593, -1.5976963645168185, -3.8067457707991634, 4.452897346107079, -4.548663903556561, -3.324882886707401, 1.1132289168762686, 4.916716864024192, -3.366600842685986, -0.8737873390724449, -2.3738558453981673, -1.7275705244611017, 1.4547877864599226, 3.352729488834038, -2.458445343062907, 0.6645777514237716, -4.3554167075315195, 0.8989217356850219, 4.8867342308547475, 0.9900501073416805, 2.4777980753686535, 4.530448678592705, -3.690922236777906, 4.913496680839231, -0.6396935026550219, -0.26144669110117746, 2.154008836952502, 0.9976227870221868, 2.060214900987516, 2.39528110885752, -0.6746532553749454, -4.076349198027181, -2.017294091528321, -2.268743093404514, -0.738860679728214, 4.7811021439754455, 4.405731370901542, -3.0084166939926704, 2.6464549190390487, -3.19981787373072, 0.2332113787368515, 1.249986510464673, 0.3231534821523301, 4.860162143790301, -4.791051681233769, 3.1374778181031786, -1.3789487626999328, -4.563708695387595, -1.92693419368549, 1.7449823225717047, 1.5639107075614707, 4.0837905546974085, -2.7796441051003207, -2.080993010613039, 4.394840557113625, 0.7944830976887074, 4.365969990157497, 3.930180991233211, 3.7854811770847334, -3.3171924151834076, 1.2682829302121368, -2.7885468311776784, -4.59522442977539, 3.6528061838093233, 1.2513874099635478, 0.028818980373714886, -3.694223719778622, 2.4617618874439318, 4.129678864365191, -3.904691461682267, -2.746311785264864, 0.9527423252913341, -1.3442044205094272, -2.941997650209567, 3.0902151947075023, -1.641229139707423, 4.12015543485602, -0.9573113166708129, 1.6759255179018142, 2.945856794163067, -1.8390414856110482, 4.536321210371705, 0.5257071416324974, -2.6962309165675915, 0.647675951640247, -1.8394438956844947, -3.6025310891539397, 1.9216634416658431, -0.9695661963728259, -4.754911649503864, 2.078187232870528, 3.095650793042804, 0.7965792189975645, -2.266194952513305, 3.802380724048014, 3.458349693188115, -0.4670069987781078, 2.8570588598354094, 3.041901941154528, 2.793387327566763, 4.050523836188196, 4.056317139511549, 1.6514366356499464, 2.9557847603914347, -3.86147256136963, 4.991703143564736, 3.1656710180611842, 4.4118970327190095, 4.995947863159568, 2.531847018992453, -4.520032055415656, -4.326710452918934, -0.9818639392669937, 2.413092946430421, -3.899822772864118, 0.3039476191293975, 0.20153192028789668, 2.4111841875050475, -0.1823004777756987, 4.758397406023356, 4.616635538911405, -2.6046410189587856, -2.4361465755576517, 2.3037926278085985, 3.2057897726069022, 4.471750978701738, -1.3900844457936845, -4.649036881801491, 3.7578506982033666, -3.3966927393520905, -4.070320541860126, -1.1303450241764281, -4.373341283937449, -1.17413856056638, 4.2146893573412765, 2.8277141666315515, 2.3666037994487423, 1.5079922347669195, -0.10331544217496003, 1.1920881342163634, 2.876372703094675, 4.159587293451223, 2.8993380715255235, -0.9031015862086331, -1.4514484290402474, -3.2186336572241627, 4.038003250561189, -4.059564420285784, 0.8657086972387837, -1.440958327961288, 3.071831478841995, 1.2695612627093542, 4.013906865235846, -0.9121274818499945, 2.2169905907405294, -1.2744497861756643, 3.764146042074618, -2.254159977933645, -1.8964555652061312, 3.1529238503426864, -3.023221653687699, 0.3457764147593876, 2.6573647875524404, 2.4540596479925467, -4.045960899210873, -0.22372550849432393, 1.036286046513835, 0.9094443366418039, 3.9913091221816757, 3.541239700045111, 1.643273623353645, 2.3953336103629947, -0.39069665107881146, -1.593390734051904, 3.8027810651600245, 4.372603198407198, -2.0463728507716974, 1.6849796678537317, -4.068701638881279, 1.8697182866182818, -2.234466910059548, -0.1480665243154018, 0.07066374369894124, 0.6517870761843518, -3.9000981483689054, 1.2970327365313299, 4.085923438428447, -0.4828188631242263, -4.647992129824613, -3.2237501834974336, -2.1469103750684315, 2.835671200745054, -1.5287513270868605, 3.3321487276492157, 1.9060549445772708, 2.6508473529274257, -3.7024973676772257, -1.7233854727123443, 3.1666541820822367, -4.932803166629042, 1.9273167535715903, 4.927989940611386, 4.609972750325481, 2.0773442772089794, 3.634131938407476, 4.171034383049598, -0.5790943189925271, -3.4169320799645044, 4.448790698285187, -0.916764806503183, 1.758946318860061, 1.1245445476057023, 2.0997434210798627, 4.7098353457710775, -1.637873210750259, 0.5022736963978431, 3.5348833531118693, 4.271805050719955, -4.857049344473562, 3.699261111705498, -3.190318919677283, -4.745289778674609, 0.6890070235126169, 1.9115338392054824, 2.7736781953796417, -2.57930843302995, 3.9580664050350194, 1.5194416183346524, 1.6263743207894557, 2.9851862735303127, -4.74726408868018, -3.4508895404354645, -0.2437987579230363, 2.8687510155396634, 2.7051148293461305, 0.8664177178315899, 0.5158610458564494, -4.500628234651257, -1.0605321392032385, 0.8046316648590981, -2.034144736806355, -0.4302553414938979, -0.11911527385074816, 2.931626733359007, 2.2379521939483435, 4.62069732258232, -2.1923266668562027, -3.0294474305692596, -0.061779782027126195, -3.7673162215507947, 4.667066179178207, -1.2771509419648766, -0.6502925681876572, 4.796720318875218, -0.6433920833830076, -2.2075823911381196, 4.883890096370788, 3.4081331301629127, -1.5128031259642727, 1.8388451075789005, 3.5431738827726473, 4.531996075629957, 1.0834416580638333, -2.857685106443845, 1.1928600368979279, 1.3770919784608058, 3.1610629861451773, 0.8699730416559861, -3.063656919547041, -4.92328364296863, 0.06486551505610816, -2.8668881781294786, -3.900284804031541, -1.6926439996249263, -4.712521148399482, -2.5548561576310744, 2.963945675377756, 2.428046092943018, -1.4236466370296719, 1.8755898857390418, 4.066245185349878, 4.159081632770604, 2.365200295256466, 2.716186851199611, 2.653388617390781, -0.09338885073996828, -4.757019174547387, 0.1804035261907364, 2.4738298862202157, -4.580044231055178, 4.964193373195695, 0.6591906037557447, -2.9192789113854447, 1.0000605001895346, -1.1229059749276327, 3.6317268246189833, 3.9974485066074514, -2.901900529603958, 2.2963495464545005, 1.1917125195542226, 1.238049273588251, -1.4875908275340222, -4.493981270145416, 2.994929232587209, 0.4527191642562558, -2.4446388703211506, 1.8708920309230077, -0.9878831796282714, 3.835342742031088, -2.2793268671015463, -1.2006831230640538, 2.1671274928063413, -2.7823483733600627, 0.6106140849893373, 0.6784954055167045, 1.880766881903277, -3.040815025919076, 1.443294111469628, -2.917394558569577, 4.506180106221693, -3.531987401231377, -0.5359915560666559, 4.290984927936641, 4.942241721570543, -2.999307759814097, 3.426056975984393, -2.4917266819771253, 4.948286925725464, -4.144182861226176, 3.102409319596987, 3.8591727719114584, -1.0352469753709137, 2.306727049275877, -1.0057778640195734, -1.535524835412485, -2.5610055494462234, 0.33825053233796165, -0.15801947846497377, -4.323996035318841, 1.0592555146748968, 0.45956811787991025, 1.534740410577136, 3.221505297960297, 2.613995246826576, -1.6981187143290946, -2.728639514544764, -4.24081159117471, 3.301682521521961, -2.838925624549602, 4.636781270760869, -1.4715816148928793, 4.579004103179267, 1.910737954452956, 1.9847211454241815, 0.23478596098537619, -1.87118724388057, -2.6831194107097045, 3.8191179066393026, -1.0420402257627073, 3.5660760498488777, -4.447723458376313, 3.5528854048740186, 0.6257736621307437, 4.510449520895545, 4.997042692908307, -3.1735854801401766, -4.704800476603602, -3.935898742069326, 3.828546943970121, -4.50786844647141, -0.7181773211081532, 4.369333036934172, -2.126150427934971, -0.7834516277375956, 4.689302351224075, -2.3849982606695197, 3.0419191097945752, -0.5069447724167127, -4.733138200562869, 3.7989579985080297, 1.402205924804286, -3.8207031142045125, -3.9923647608828916, -1.532648268966704, -4.496990160719848, 4.179664538741422, 1.970034207146699, -3.8039790494275536, 3.2961251095161472, -1.3252006240529877, -3.9936161762406686, 2.418730101584413, -0.9654353493342889, -3.345249050568768, -1.7328966625762554, -1.2641726246323168, 0.5757662551833844, 4.436916727958787, -1.9961989660319226, 1.3833597971401188, -4.07890077045662, 2.9384050922172893, 4.914217696649981, -3.2805013904249316, 2.8971122860708185, 0.4104763674507774, -0.9436520217217961, 4.932025696356261, 0.03776174720277048, -3.8589352383117212, 0.05536657653457766, -4.685437014122396, 0.7310619976134287, 0.9225013079958622, 1.2501701214821495, 2.2519932289865254, -0.48099505487710914, -1.3977790284017577, -2.2533009817311456, 1.7244627958345102, -1.7970769014429644, -3.1465712208272247, -3.860434380987945, -1.3238765990553136, -4.207347780377217, -0.24359089830641967, 0.6734960247610591, -4.399572690032655, 1.933653573470572, 2.767193130658737, -4.316620977775236, 2.3564761573155355, -1.1851216428335034, -2.4792353551188615, 4.418095258150235, -0.12197781899077942, -4.5612183655361775, 4.014251016904431, -1.440354981362101, 4.054534977964217, -4.487070505798293, -4.943421619883543, 1.822087439991681, -4.124232428567915, 0.1870798546176644, -1.9515733607787258, -4.243380031748684, -4.459026719677795, 1.8079279089525606, -2.8134985640197243, -2.077214208660463, 4.553045715811271, 3.417590155760914, -4.410079489921718, 0.7637573777418281, -1.927551153382935, -1.2055705822233875, 0.09844290357409324, 0.7690753499517298, -1.4616632573049673, 1.2067923698042353, 2.8426413861867195, 2.289094948553676, -3.570540678146558, 2.8458686663272967, 1.8280000412358905, 1.1143461498822758, 0.8113295969993874, 4.988669306930692, -2.5364240554435047, 1.9361920065610967, 4.56390428226319, 4.997671464026791, 3.2198041752856845, -0.9972145652167939, -4.518413277847894, -1.3782939519346602, -4.882607636221181, -2.7904009803410634, 0.04842924909897306, 2.617986495867255, -2.12393201623166, 4.866913071170254, 1.8713270933693593, -3.4520261346970793, 0.26039788853458123, -1.5750663389090178, 1.7138097320567178, -0.7189736016856134, 1.216386028106422, -3.5144448076786015, -1.3580202425752508, -1.458460109127866, -3.8157363011098466, 1.1282774773476305, 1.3071941945968213, -0.5337888380178315, 2.94410441334736, 3.78882783856389, 1.858284324487089, 0.4524677292601922, 2.5666859545543463, 2.2232881182058097, 4.0072121819002735, -4.534421332262234, -4.214284555231899, -0.23654645722823808, 3.0310832796383185, 4.255547644713575, -2.51620082160938, -2.675050259569587, 0.6959241221251222, -3.747946340581787, -4.591881490227985, -2.381012950510424, 3.867634178248272, -2.9476620027623257, 2.502889040095128, 3.2631103272990476, -0.7357928753155383, 2.7079309951715125, 2.2185050754789497, -0.7297919940599131, 2.6618411157891835, 3.7343773923335597, -0.5280310937274049, -1.8853775642359025, 2.4405531444087583, -3.1572654276483245, 3.5903029567075873, -4.132618298445206, -0.8268194619631437, -4.841234045971396, 0.3175088744413852, 3.4179256486473566, -3.3361758451038472, -0.8316636904435235, 1.4164516987878697, -2.324817583527098, 0.8799359259979713, 3.6756129897083625, -3.158299796888542, 1.2257570582509416, 3.69259672659485, 0.37886915996376747, 0.4908010201860291, 2.462624762005184, 2.953701967479727, -4.201858351135867, 2.5392243422446894, -3.5851543432540267, -2.011024812264035, 2.438966023232685, -2.1880754715846127, -1.2749242154018878, -2.5437618783317495, 0.7226539779443399, -2.109093007088135, 2.5086314824739855, 2.221735279151199, 2.5411084856995174, -1.2666416367010571, -1.8113980807847962, 4.0388322174253055, -2.4253383095090153, -2.6191179916120455, -0.6651334426624693, -2.5401468167123884, -0.010629426238658368, 1.222439657165598, -0.9439153889454328, -1.7581670759102783, 3.6002992948733183, 1.670420537719373, -1.1465692807470687, 4.57565952771229, 4.6112413735905395, -3.058193483154803, 4.767646342264511, 1.91946071512662, -2.3987270117603043, -1.283919305512926, -0.2956240940110284, -3.5485046245108878, 3.4338981709663763, -1.4701822581578128, -1.2384913327739824, 0.14456219584267327, -3.3489567123911304, -2.279665887267226, 2.4052960206936467, -3.8830395350043356, 1.7799455669156306, -3.7473606855730646, 1.9842918552646633, -4.210689105309292, -0.10547819134463765, -4.961529129208571, 3.7909284886732415, -1.1086105023362136, -0.6032173695866829, 1.9658876599558024, 3.8981609608328167, -4.89811143967478, -0.04453027028223211, -0.7688784264501534, 4.699551110211523, 1.017537863298756, -3.69951069709776, -4.08803201539626, -0.9550483910815366, -0.43225472292203726, 4.756480393252572, 0.21756318224439397, 3.5360987376216464, -4.173364367573029, -2.768080000193743, -0.7705422131217867, -2.449838546651184, -0.7787092149818093, -3.689497239084937, 0.4516826525650286, -0.24863604821982221, 3.7934473671544513, 3.517320852716498, -4.913461957960175, -3.2946028239200476, -1.103679470495579, -4.170484939266391, -1.9139808280990298, -0.09873796411322466, 1.3250957392711857, 0.42250201760449535, -2.556720328744111, -3.498476936913076, -0.5270317346217288, -2.0675973334506437, 0.9651566292014735, 3.402087890991755, -3.387735939453762, -0.6732884065316593, -4.811850992976749, -0.6958224213506146, -3.9004040361993098, 1.4645827295422933, -1.0587254247251723, -2.809400003287641, -4.182539486406675, -3.642722156984389, 4.630182393030379, -2.647191144226617, -1.0647840255561225, -4.314744436325714, 0.502695200636051, -3.156175200806203, -3.642226632055597, 2.7635490135172223, 1.5598684949808064, -0.9632308655331343, -1.5742679857207897, -0.15890525952037038, 3.6250015275947636, -0.9514418825110234, 1.5153842123318366, -1.5353243367603522, -2.771148112968449, 1.4145190379241255, 2.3556756610461713, 0.6439767644114163, -3.4259875630131154, -1.7528191251487923, 2.602799338455527, 3.9909214695963477, 3.085203507776317, 4.565246234951912, 4.395620710498742, 2.045878838987564, 0.41097862139426056, 0.654716131033604, -4.911685404554197, -3.4966663933884923, 1.302057523765031, -1.1421464992819406, 4.534869604446261, 0.12073545507257588, -4.533730259879216, -0.800879548961019, -4.300050873579492, 4.384601124915378, 4.786129254879727, -2.21125597336035, 4.1757131428572265, 1.6422992185416518, -1.2435589382789267, 1.8855024726821545, 3.301965592227699, -3.7027283283917534, 2.0879047898448917, 3.1473686111399584, -1.1485331061267914, -1.487583639317628, -0.2359015604184176, 1.987747791325364, 1.2553640128928114, -3.325115863276636, -1.2001644962525102, -0.14732703793516677, 3.4401460213497863, -3.2986343736097092, -2.600445569003486, -0.3936400896256824, 2.0836352490798804, -4.251407117771462, -1.220800451750522, 0.506398779053967, -4.39119248492403, 3.8615677152519083, 2.059520205162313, -4.285473077847081, -2.88962825760429, -0.293786200430719, -0.4853831554169883, 0.49947896578844286, 2.5739058407173543, 1.1192694640139358, 4.0863447976948954, 0.9958572572306243, -3.9898010213439763, -4.590413208209842, 4.303954383300141, -4.86091980926946, -0.5410868994413125, -1.7005693012789278, -0.015640674051039305, -4.5956920685683835, -1.8087362277501216, -4.012976658036193], "sigma": [0.34262408733561, 5.721177737702475, 6.560750687667467, 1.9627722640772782, 9.164479753312454, 0.6292876502263655, 8.29322686876484, 0.4398575193208464, 6.680742144549742, 2.8496237376921774, 4.585295401017276, 9.597782163748368, 3.585583518607376, 2.878481935302948, 6.799527587498401, 3.460273299312607, 4.5010642645129515, 9.314247767481548, 9.23127902368371, 7.841501524972896, 4.3233185595008035, 1.787376622183603, 3.6051065737873444, 4.4097033214296495, 5.5815395393135, 6.4186249261796195, 5.563618928249416, 4.728203814953239, 1.6415663757820464, 1.661966772190595, 8.088143759978214, 5.784004336582884, 1.3002002559961168, 3.257151009180602, 1.5163872685582214, 4.4805096343030115, 3.2964885392942844, 6.691863907784167, 4.852214683067484, 9.30124615605774, 8.711028395373685, 6.101027423905634, 8.069817028679877, 0.8321141371663187, 6.201885878577661, 5.386806947996286, 1.227412603243575, 7.652448442694945, 1.2875814921066697, 6.730502305497948, 3.246326000933307, 2.464631206169018, 2.6736299507078196, 0.9808288306682388, 1.490695860310356, 1.600457340054896, 9.235943392620822, 1.6076689390161547, 7.556486393580636, 8.966126785031916, 0.34594076014562536, 1.2710690834991833, 6.578201154222681, 6.916011182218194, 8.20015116861743, 6.917833298581321, 3.2644530272033423, 9.545352007483032, 6.199418205041285, 7.555195426165234, 8.886824436938262, 0.8538171593436882, 2.6589582613225615, 1.7717894530272815, 5.775477978249949, 8.531977663597864, 7.267987064870815, 1.17127791029065, 9.44791280958617, 2.437395984675914, 1.313049553411182, 2.123085067994699, 6.20912330342637, 2.750241934739719, 9.70631932775458, 8.676566347568347, 7.879803027349566, 2.1269927680745817, 7.518939855306902, 9.637007476079344, 6.511417760552481, 8.715782049000774, 0.24643434079899543, 0.34625332832879263, 5.661775730994199, 5.95305841748924, 2.723536680186691, 9.382479473956954, 3.725192541656496, 2.403573934498032, 7.525996192889573, 4.1332798529925645, 4.557610526601291, 2.2653816256626267, 8.734385631465472, 9.715149056679017, 0.2566193168488161, 9.392200579304898, 5.8091194666943196, 9.063522056752724, 6.556728404925698, 3.5376576249987566, 5.444435544806814, 3.701978193701866, 7.569963829291974, 5.973289600992551, 4.950180681524235, 6.472841185660631, 1.9742800090867862, 7.523140635312767, 3.523495145453247, 1.182170564524505, 1.5181441155604025, 3.5025022102047623, 2.443559566566489, 6.850789444632657, 2.8806999564507776, 2.6244085665945396, 8.639847498737792, 5.998083466991318, 8.398204911201992, 7.17652781749365, 0.11819887717532832, 1.31982737871166, 8.580699061862237, 3.6772697009319164, 3.232371003287834, 9.608504197577625, 0.7044134519624689, 5.371783868782774, 9.911814906862388, 9.77181471321305, 3.725101328557171, 8.658662304919194, 7.291185525547579, 7.130329993076497, 0.7283036458060098, 9.812632373696303, 0.8860950183723425, 9.41513670320286, 6.780075250227863, 8.338783169056319, 9.32215812815159, 2.5689978957924677, 6.811333885400369, 6.170304732185815, 6.770942723344505, 8.0882561965733, 4.068878701784506, 9.633938551617874, 4.274077320489139, 3.163245914326273, 1.0326370961215459, 9.3210318825439, 7.673197525728856, 2.0270211281755244, 2.211758179962864, 6.684713710255258, 9.372972608578293, 0.42988353236858556, 4.742167479945063, 4.443364366897616, 5.021805358929074, 1.2736457734612394, 9.805738158546994, 0.732999837239725, 4.477829555810208, 4.18473860389222, 7.220726755746496, 4.536871563777175, 0.7116479815063835, 5.948051823328539, 2.9259657167459516, 3.971409001102891, 1.3694502310468915, 8.978383238278798, 0.36618206845049783, 7.343077107761695, 7.169104775111345, 2.00381936845457, 7.318965927155648, 4.135152050590512, 8.840843949836044, 5.6050752752456185, 3.439963776051178, 0.7840207953480326, 5.70269976348272, 4.261331866394709, 3.3053743445423067, 8.937882080105185, 0.9159060356804093, 1.0606352023272603, 4.677942969031721, 7.201444385975295, 4.314970740801217, 0.34182304634879357, 6.071339030692872, 3.716707685651729, 7.711427843865491, 6.2102543017592495, 9.832688827038014, 9.462618156013104, 0.1341604807149687, 1.9663704595300624, 2.101253936167288, 6.996541272162764, 2.9139615112797066, 4.974646598181474, 8.263098654422663, 6.371441386284718, 1.5710734240402002, 1.711935507321739, 7.057077781055508, 9.959894770111354, 7.8508683913199295, 5.943143216050265, 2.1600027773791797, 6.753814840753157, 1.8578194007255533, 6.300140383897824, 5.4025801706777274, 1.0083904763451745, 7.638122248492616, 5.752942282035596, 8.355969579642958, 8.017350589223906, 1.285999868134855, 2.2789520112475214, 0.3928209941688542, 0.25431087160869825, 6.309352823815339, 10.042626416544328, 2.6671942623717473, 9.358730868516968, 2.180491176064445, 6.597262017729021, 4.114097887029242, 9.017701042655428, 0.6396153553308025, 5.071387429264439, 9.940289866018322, 4.855916239354279, 2.182136463124881, 4.425266556338208, 1.9945876424039855, 7.376611092228101, 7.589879671602147, 8.841975913673418, 9.78343958187043, 2.712235691561545, 4.859876854286007, 10.09808171327582, 1.0007467890726085, 9.617827641517739, 6.4962996724104745, 7.6202614400739, 5.010495463629701, 9.376747711712042, 2.4636264951281137, 2.765784665326514, 0.41349580072395076, 0.7297369473819414, 5.995957081567237, 1.7450177921898369, 7.276471093421175, 5.456875002433929, 7.191466117382183, 5.93002920971629, 9.055160450037961, 4.717451810438383, 7.904394034863053, 4.804134989001955, 0.31522387888864956, 2.8703663656194602, 0.681324428845229, 9.287154640808192, 8.606428145067873, 4.795794529935754, 8.05026906719111, 0.8375748192593423, 2.339096009990912, 0.31076335636383556, 6.715667313888361, 9.447279207115283, 5.8284185768498915, 2.667986718940648, 9.922837314155387, 1.0837900525199273, 8.909437443744293, 5.296758195087055, 0.6064321038226127, 0.23661592514726096, 1.051517592925395, 5.064344069510273, 0.63223670571237, 9.287948289874423, 8.275934768671673, 4.811446959832192, 1.051066007892072, 2.317843011788099, 1.668389718104295, 1.651197053932364, 8.627804560962316, 4.919335873590912, 5.801512494012406, 0.6335523558463173, 2.118616626002597, 1.2644714688974057, 9.604992430646984, 0.47620276579410026, 7.385489671842697, 0.33585452081053335, 4.826833883895943, 9.570528271647882, 5.377733833508749, 7.345299739631966, 5.897802187478707, 5.808078253131535, 4.407262727306549, 10.01734609235788, 6.109215070535468, 8.956405765673233, 8.574560588133926, 5.025603261722495, 4.40926654205305, 0.5252236552871136, 9.15665866887663, 7.3078643161481995, 8.981423351701745, 5.664286338413695, 10.094672461661071, 1.8851851216079507, 4.4210382748640935, 3.5677004841968194, 0.3885319342291059, 8.033783925980027, 1.7704353584057997, 0.29673655592705617, 8.868775439048054, 8.568379821946477, 2.8225184557710303, 4.707832520199666, 7.122329535681053, 8.875199636325538, 9.021316680411433, 2.2987921953631605, 1.584888553507695, 1.7754808463277727, 0.46707817793390605, 7.439421961780009, 2.8762923468594823, 2.5393454628908816, 7.17688934777093, 1.3452114052110742, 8.892958627960958, 4.060346148585738, 9.872823132463617, 9.989387267690251, 3.0233787410883326, 7.777301304673363, 6.558080118754897, 2.9934860028279773, 8.384606935849154, 8.672911255988508, 7.377854365572816, 3.0493964624170333, 4.309744890424804, 6.966847062273252, 4.411139450858139, 4.637222858636022, 10.03941722218516, 7.640603531717393, 1.4916096015238711, 2.7494231670219915, 2.179424661578242, 4.1586760542139185, 7.372126418581627, 9.326081915034903, 6.71546422389908, 4.310022658378075, 0.8942650551036989, 3.248620934250163, 5.853463919787211, 4.4687036162261045, 0.39246221139644477, 6.193010119174814, 4.242115205092345, 8.282445048606766, 5.983421864949146, 5.223873328457431, 1.4750420107856455, 0.4275055331751808, 1.2846107781704585, 7.887329411908349, 2.2837126166693, 4.231726763799337, 6.9281875370841615, 7.575281799674046, 8.24564444620501, 2.709647966737443, 3.0702178930761304, 1.8215293270245214, 2.3894397784812518, 4.396825570802517, 2.708603091023132, 6.179107851357829, 0.162447207685008, 0.1120642961030526, 0.27144916153631005, 5.201257640193185, 8.59261755309261, 1.4893516898496262, 6.058683891330501, 6.003493629735092, 7.047022778080745, 4.7308574292939785, 6.4132470511234505, 7.257747865516097, 2.5301313139909665, 5.767691796827256, 2.3605192274769773, 0.9249065526773302, 3.71576711582479, 8.077107495121204, 5.287328567051267, 4.658705749152979, 4.5652360612177, 4.019703630191983, 1.7694077387898044, 4.906449394624347, 5.176618829288075, 7.3938274190737925, 4.158368522226176, 4.746635423569703, 4.456811430842452, 3.5006173570390495, 5.336143844508326, 9.458296551303329, 1.2155493400840744, 0.7151196744711806, 5.830751757640957, 5.62315020852955, 1.009695996396155, 4.9270480057133135, 1.7328562443702378, 8.45280154862167, 3.9704568207154014, 3.679583479707682, 2.3061344358339633, 8.490474484933817, 9.820911780213935, 3.1446568839014333, 0.2709380385458503, 0.18730693133268575, 9.451196968613441, 7.68894471291067, 4.067892484268456, 8.102660152674444, 8.328455579949036, 4.987530517571164, 8.320488087073235, 8.164614439812787, 4.356523852542621, 5.587118829208299, 9.848083070621117, 0.3650454571138594, 6.434885981130837, 7.9142287401284594, 10.065763132380102, 10.081769442339441, 0.4115577525786561, 3.455636512089415, 5.105586090149144, 3.1806880993925923, 2.141781520498738, 2.633862825857657, 1.9451660790460423, 4.8525617217583505, 7.021617216628145, 4.278217362527672, 1.2001466340125133, 2.71462305364684, 2.861497783571474, 5.4349194712727416, 5.92296685931274, 3.691071198856879, 9.735200348161905, 2.1805527901319, 3.0142136515771445, 6.579658679734711, 1.9243811854933468, 6.267789158056678, 4.144713236019954, 8.792006530559172, 0.8024614582949062, 9.55169644966585, 6.823431818311407, 1.48726813655488, 3.6926692919472646, 1.0972092803183042, 1.7145072194976452, 0.462634605665062, 1.1667434515527997, 0.28644772742430924, 7.606132725139763, 6.282139924442742, 5.623764037838808, 5.788025859747232, 7.9848287529231525, 0.14840880934475878, 3.3194411412660627, 6.066878110933428, 0.4120782774732167, 0.9118239950229244, 5.2451963528293035, 0.381131285765539, 9.929307608950992, 9.028186048187015, 5.612316185963982, 2.0748342125620143, 7.056056024972959, 2.49204052086186, 8.2059485827771, 0.6159664491743221, 8.163510487132704, 0.23053277631933314, 0.16413995942144868, 3.048367108355128, 1.2293158622548517, 2.6522553978199768, 6.893658256238202, 3.0187192748024807, 0.6520157179488216, 8.691031115977811, 2.378882787900378, 7.033000111924516, 5.237310158097934, 8.907033609284765, 4.329435975792883, 5.3392826530746085, 8.969868342365718, 8.871958715738426, 9.56081114877829, 10.076216064222434, 8.90568472363583, 5.101172994454062, 7.779820020351519, 8.308275772351221, 3.764705542795319, 9.937262718567398, 6.230171351198916, 6.563255261016126, 4.11967457184844, 2.527487170524101, 1.337023560318601, 6.456759273833391, 1.3689962036060677, 4.860888187301748, 4.6490438300911645, 2.343189395593536, 4.5717780850031895, 6.870849827517095, 8.714174996030595, 4.421598245865244, 5.729397760361585, 4.835176892693022, 7.847654869334399, 3.687627919077984, 1.94402825446077, 8.27769030629054, 9.285913989257962, 4.337018655375809, 3.4206015190921546, 7.312329512744354, 1.0531123268342768, 6.9951364509896266, 7.08029792094532, 4.016789911774799, 7.891205056062059, 1.027374373337988, 6.389565361550182, 6.305654466463627, 6.825228189770976, 10.070997960577097, 8.323190555813143, 1.8434358888535352, 0.46340099131908163, 5.921909753300435, 3.112208412025416, 7.0532826729654285, 9.144015577483048, 2.6595041322914725, 1.221897715141128, 1.2454387927854882, 2.003504396246286, 9.674499629341362, 2.292703038991637, 0.6232861076958428, 7.844875603706908, 6.1767560890581406, 4.354655697808859, 2.0407188622571226, 10.078043971415223, 4.478338393439779, 5.292188892839554, 8.659958196298783, 0.6569942028255659, 7.694237304627365, 5.263913972963682, 9.712526228438067, 1.1582083734340676, 2.557234142351563, 2.643975745036198, 4.168087199444391, 4.561134029704671, 9.439452977301869, 6.406714346791326, 6.429803122910399, 8.196433511183736, 7.655012419620432, 0.5706171112500668, 4.741427814192057, 9.760716410929884, 7.678440374140584, 8.923151471413165, 1.6998026922200749, 9.055376803413104, 5.044496681491273, 6.186947342945855, 8.196126328250164, 3.21045434268997, 9.67366255720574, 4.126693634871719, 0.5434860278776531, 8.8787501663537, 4.632436273559278, 4.5501792751336465, 9.872499812728426, 6.506905239054651, 2.3266206252259916, 2.5854429960118086, 8.445739861986697, 2.7055823686803704, 2.508152509617393, 8.858122572737775, 10.041368888699258, 4.418355309964731, 9.54650667991125, 2.1870317947075413, 3.861399710863549, 1.3584147004628522, 7.537817755735198, 8.735683030489088, 8.788991609102322, 9.005609013792096, 6.654091574169037, 9.226520536304195, 9.57528130330596, 7.462480014511759, 2.675124218315498, 9.052820979013994, 3.945668006756281, 7.276023289989512, 7.354063382990287, 8.601384145135114, 1.0367652231370594, 5.892719181180146, 7.639462317903973, 0.6308898284662056, 1.682874933268842, 7.424412869235543, 7.916470186456835, 9.013100547091291, 1.237971464119546, 1.320754715271898, 5.6879749419560195, 1.5687637896923579, 5.655897313483955, 2.2076549780829757, 8.029398812906734, 0.5781235990902166, 5.331972784455089, 0.7541151643637211, 3.145768685071433, 2.8400981534391323, 8.019747465074435, 0.594569274831893, 0.5942772475163237, 8.721402918860854, 1.3591289969757148, 0.3210586673152592, 6.040297591704633, 0.39126088879974585, 1.1039593178367857, 2.985004450484278, 6.783084662677869, 0.43864310495874237, 0.6062797953001241, 4.210518520080004, 7.397727239972097, 1.9178585201970144, 5.052502022297277, 2.956344761748347, 8.96107237690619, 4.693882217924174, 1.3417387328846753, 8.570998881393823, 8.247802070191424, 6.991003808844229, 4.408572671084035, 9.960078714902949, 9.629567943645245, 6.767576859594884, 1.6375670646570706, 7.793904924349715, 7.934153629154748, 4.009057715823121, 7.712600790801402, 7.33443108676291, 6.96281068417169, 5.517735661457815, 1.8395258847648843, 8.880623263210987, 8.66076779594275, 9.450262669901841, 9.685312749560357, 10.086843726023902, 2.6080566774778013, 9.732638321995584, 9.119760101840992, 3.2117549257826936, 9.606793305032626, 7.732565137931198, 1.0227289617110569, 3.64598119093526, 0.38184528509270554, 5.742182835191707, 2.9667582066439544, 7.339030304713597, 4.025639818060303, 9.434297430534926, 9.349707281555727, 3.2638735085856907, 7.997037926663349, 3.0604104869596136, 8.392662514697324, 2.3493512117799455, 8.655435135456626, 2.1189427420848914, 6.252710436371299, 6.693202409170934, 0.207331801744035, 1.1127894974794394, 9.935093942295088, 8.94678817514551, 8.278050441090016, 5.884959145043441, 7.175266666219882, 1.1312909396447046, 5.65331570639221, 0.6704058832465186, 0.5175669501484946, 6.7186883892312705, 4.1085829082220755, 3.4150965010004253, 5.349733110335968, 9.722397597430051, 3.688772882177005, 6.667330941330608, 4.519405267541298, 0.16171252238067915, 7.31346836547166, 8.464191454918074, 8.013809130540858, 0.6304914348165845, 5.420014917413057, 5.14647403472423, 2.0860041439892063, 1.5330064585834435, 7.313603710796068, 5.416967997749124, 6.089927141599897, 5.966969962603466, 3.9343528889622124, 0.6073718105454239, 9.035856087678068, 1.3589664035417892, 1.3515356908375398, 7.655792410020252, 4.140233692598452, 8.347873659939124, 5.24855414720559, 2.4552955941167642, 1.4411613553706926, 6.5709322070841125, 0.49892183344430563, 7.820328790975539, 6.851404124788819, 6.147334941847745, 2.466513989437882, 8.33272669588976, 2.888859113988893, 8.30614083096819, 0.6947369110749179, 7.405110994014133, 7.251570340893328, 6.540279385757692, 1.949794750919397, 10.083263698154633, 0.7635973659738625, 7.239778870076648, 2.8697838089083283, 7.922126794403195, 3.4227575961710808, 5.896324072303699, 6.1742942083904815, 9.043916214627359, 1.0789194734336671, 7.940143528437889, 2.00488007749535, 3.9255132838640647, 1.5087314168547161, 4.728530904965307, 0.17927430130762026, 2.8742531196960077, 8.231467913535823, 4.693372305585291, 3.697687597932915, 5.836631534314606, 2.846392785226811, 4.9131913206564946, 8.139891822206016, 6.3506732151695235, 2.1899426236689066, 7.556151199588551, 5.751527356278363, 7.573275961691413, 1.757990342262098, 4.498477198246554, 7.769886709017648, 4.21003596136665, 6.783659074190911, 4.744575688297704, 0.7157210022737147, 8.53348742652033, 8.588305387360874, 9.864907276838608, 6.327929467744417, 7.866563829085251, 6.805256601571868, 8.482865224237157, 3.084468614352079, 9.347246583220423, 6.149661765300875, 6.8643915223984475, 8.486061620081907, 9.396723767973292, 3.9742564879733044, 1.0990450941851526, 5.345148736802552, 7.287356111623444, 0.4665223663889083, 0.17080922796397827, 8.536280764624133, 6.866935377455485, 1.1400674179676873, 7.296389701517153, 9.297597564143215, 4.183281535192911, 0.13129411404082628, 4.373302892579822, 5.1491979711735905, 7.108992631486372, 1.953144239270036, 3.0238601877841753, 5.984422754689354, 0.5464606100072288, 6.492310996275945, 1.1266430194743615, 8.821215864263314, 8.80127156188842, 2.5115300130111073, 2.978460867942556, 6.732487922478338, 8.888439428119627, 7.384750005239846, 2.9876492691009635, 2.7579555753672005, 6.062521688812247, 1.6808111450045615, 9.820895815700016, 2.916945531258699, 3.313590898757548, 9.479900526597431, 2.3905956180567522, 4.283839143352318, 5.244855212726416, 2.6382301862571467, 8.430072043302067, 9.879295951336156, 4.990575301180144, 1.1896634756494873, 4.88070523622407, 4.085541825733095, 9.195100860216643, 8.100998197215871, 2.532734424505221, 5.227469965951112, 7.54265760515955, 1.1054763796532197, 4.376116183019293, 3.4282312610670664, 9.509949937938677, 4.660253883809259, 6.577315275521925, 1.6237422658151202, 1.9733736549165937, 4.2194795568387455, 0.33856698740953306, 5.540685284076433, 2.7606583050682465, 5.808954106142384, 1.1078213552977678, 7.291701769209139, 3.129370769565891, 4.554434132258242, 3.005883244041725, 8.601462973014133, 9.562808901768527, 4.256894171117725, 4.867205405700466, 3.2136446130115948, 7.021643736701712, 4.929785577684925, 3.7581759549049, 4.644360100312245, 5.871840786119163, 1.2675194109834087, 5.302189465102322, 1.925040394484021, 7.1346060179713895, 5.483813209363477, 5.365004060022744, 1.951285006557948, 5.506868803914855, 8.397957115032051, 2.9054767308308347, 0.2993274814783352, 2.308375145514162, 3.5114833162390235, 9.125738643058966, 4.392643182500742, 5.765361826584574, 1.5268062826363327, 9.480374479111376, 1.83630095464126, 3.7260506964482096, 5.5356216637983096, 6.892731840619803, 1.0350837086549247, 7.095060833073222, 0.8826897261737808, 7.033087226677116, 3.586893607797942, 3.014567932918304, 6.830844665119142, 4.28717951917949, 6.464927512444323, 1.2900137736943185, 9.826509560444205, 4.6949424037691765, 9.943790913679281, 9.723433121005021, 1.5223831422700063, 3.0336195627833007, 9.499017870698312, 9.431973447165587, 5.562613744766738, 1.7349135241678082, 8.173960155862886, 1.6052300386068785, 5.947345200034911, 0.7537505460243897, 9.90334216637656, 1.1400208747003604, 1.6064991872388934, 4.082328678647261, 5.846922610197344, 2.5555007758170203, 3.051262867045401], "expected": [0.013717201631846608, 3.824728562934874, 5.029638923971694, 0.45016275884264706, 9.813984579378722, 0.04627305325287124, 8.036682868667427, 0.022607564587563873, 5.215298355014963, 0.9488657675646505, 2.456769311208169, 10.763946153337224, 1.5022749477748476, 0.9681814458506197, 5.402406004407838, 1.3991057526239157, 2.3673374388899813, 10.137370324330863, 9.95757291581394, 7.185023643216568, 2.184058232745587, 0.3733033486605902, 1.5186788847704906, 2.2722100821386584, 3.640304816395883, 4.814084795896696, 3.6169665387976537, 2.6122943866417385, 0.31488112964559173, 0.3227560653102846, 7.644119413403496, 3.9091916177734376, 0.19753780946844612, 1.2396683888047424, 0.2686890686923846, 2.345765367215756, 1.2697928563112342, 5.232677141007183, 2.7511213957772744, 10.109088886509147, 8.866834407850762, 4.34946352677559, 7.6095174054732455, 0.08090875903121435, 4.494457520538382, 3.3907249525887035, 0.1760398118830865, 6.842748271571006, 0.19372210967266007, 5.293277881563072, 1.2314421069730794, 0.7097961267715235, 0.8352804839600608, 0.11241290866636038, 0.2596616604367277, 0.2993077376105778, 9.967638157632368, 0.3020111528730378, 6.672207567644251, 9.39376065314398, 0.013984057782371731, 0.1887852458705262, 5.056430453157017, 5.589090123928983, 7.857302189398548, 5.592035554135461, 1.245232900587862, 10.646666159512275, 4.490881625197399, 6.6699279719892735, 9.228326259431139, 0.08518428773042243, 0.826138343040574, 0.3668208081297384, 3.897674820967842, 8.506074040754724, 6.172456393790264, 0.1603059509189946, 10.430412700481822, 0.6941957040492138, 0.20146145755164535, 0.5267014704310277, 4.5049534499955035, 0.8838356978167868, 11.008772302059228, 8.796816306658439, 7.25538498770114, 0.528642123246385, 6.606066798426076, 10.852108591134245, 4.954283544838459, 8.876514403903847, 0.007096303688233365, 0.014009339256497702, 3.745717879921778, 4.141045741511912, 0.8667546822058089, 10.286437342604142, 1.6215382164876533, 0.675063630021661, 6.618471874582639, 1.9962703730613789, 2.427192145932056, 0.5996702260073621, 8.914448166971294, 11.028810523518906, 0.007694996525376432, 10.307763761403187, 3.94321407252905, 9.598950033895278, 5.02347364524691, 1.4623837014525174, 3.4636616447565274, 1.601391251285146, 6.696029337826236, 4.169239859089676, 2.863332884259907, 4.895754616490248, 0.4554568467728928, 6.61345038864024, 1.4506982729530449, 0.1633014428330961, 0.2693120217394548, 1.4334632888450773, 0.6977110475006096, 5.4841708861739065, 0.9696740897721741, 0.8048086444448953, 8.72251837004658, 4.203922962742759, 8.24143187412287, 6.0180873112663615, 0.0016325122209488682, 0.20354667172968194, 8.603498371021939, 1.5800859297354337, 1.2208776500658967, 10.788009183310066, 0.057980909164388084, 3.371838774242791, 11.479847158101542, 11.157841457738622, 1.6214588092011963, 8.760549408130487, 6.211922620096224, 5.940855623821072, 0.0619804474310811, 11.25125055242651, 0.09174667396178611, 10.358169162863856, 5.3715394183146525, 8.125219485874847, 10.154596472768405, 0.7711826249169339, 5.42118312910123, 4.448800850600657, 5.357078608323942, 7.644331942942723, 1.9345467329923032, 10.845197939941842, 2.134590086487983, 1.1692184252551043, 0.12460204896758764, 10.152142989643524, 6.879905852863063, 0.48011612253185465, 0.5716168513175044, 5.2215009763232, 10.265602289098128, 0.02159391346882901, 2.627746794630113, 2.307031874719385, 2.9467920578203928, 0.18955142625664953, 11.23544617093536, 0.06278233955981681, 2.3429599028626864, 2.0462863618250737, 6.092444208608727, 2.4051530008310236, 0.059177986279934286, 4.134083331329211, 1.000387382569286, 1.842972991103139, 0.219140297202504, 9.419460240866401, 0.0156683724363989, 6.300658139706958, 6.005644131278559, 0.4691879818525481, 6.259349327723051, 1.9980792314855143, 9.13307846540948, 3.67106976586863, 1.382730293683736, 0.07182653287205226, 3.8000626250548994, 2.1218782177955364, 1.2766476285569486, 9.334670234715002, 0.09802381051515811, 0.13145037017481065, 2.5570521461101086, 6.05994889064716, 2.1756320574055708, 0.013653136107301424, 4.307236407881108, 1.6141598867725049, 6.948632408086749, 4.506594763472808, 11.297291368248704, 10.462907115437105, 0.0021031921422956863, 0.45181476740531545, 0.5159252924819498, 5.7200067300040915, 0.9921957475356348, 2.8917064677087234, 7.978396488021103, 4.743567921307885, 0.2884182275230833, 0.34245580987501445, 5.819417923535456, 11.591489309350694, 7.2021992702044875, 4.127262873492115, 0.5451780453606493, 5.330010188396025, 0.4033078977650259, 4.637994108858287, 3.4106109303473215, 0.11881936027612348, 6.817151554501748, 3.8673170053637955, 8.15874650278651, 7.510891519283035, 0.1932464778758939, 0.6068761907988832, 0.01803097121007621, 0.007557176958795876, 4.651567927413832, 11.784857995056337, 0.8312641203165716, 10.234429901461713, 0.5555695135180687, 5.085775729383606, 1.9777845521490154, 9.502139583509638, 0.04780435928675258, 3.005268772450354, 11.545901201503659, 2.7553204329696652, 0.5564082384783231, 2.2882770781132487, 0.4648747813438359, 6.358336580081453, 6.731308895872642, 9.135417377045941, 11.1844047109205, 0.8595766163449321, 2.7598168917555763, 11.915369112589905, 0.117024865251877, 10.808955252641377, 4.9313047257333125, 6.785306691661058, 2.933533726436731, 10.273873200217594, 0.7092175455645545, 0.8938537527786702, 0.019978917148534274, 0.06222464252409832, 4.200942818819585, 0.3558192646639305, 6.186875203389657, 3.4795072888029157, 6.043167283351741, 4.1090687179591185, 9.581247065631265, 2.6004271040298788, 7.300740341172837, 2.696870811672249, 0.011610955395495792, 0.9627297753527625, 0.054242245589752255, 10.078481273472786, 8.655170617344467, 2.687514864975665, 7.572696151821414, 0.08197415784157544, 0.6393311063204963, 0.01128468253288535, 5.269969311588508, 10.429013764273838, 3.969457958239547, 0.8317581515027943, 11.505393621385698, 0.13725243568263698, 9.27534996402779, 3.2783101132415697, 0.04297284507049468, 0.006542107571753711, 0.1292000927956884, 2.9969268776657034, 0.046707771953155425, 10.080203893443148, 8.003203441821507, 2.70508642068666, 0.1290891440104089, 0.6277659769341534, 0.32525557444367076, 0.31858663238025875, 8.69821897449799, 2.8277609329472804, 3.932893650561627, 0.0469023668700653, 0.524486713924949, 0.1868305137804389, 10.780124907065145, 0.026498028691356677, 6.373651735129385, 0.013180507608746929, 2.722415724923265, 10.702902276768743, 3.379312430332803, 6.304472933635809, 4.06452822257885, 3.9418006534915957, 2.269695623658809, 11.725600578795357, 4.3611454169470525, 9.373402380564851, 8.59119320617424, 2.9512509569627885, 2.2717599814041067, 0.032234303801599466, 9.797240966683919, 6.240375018846984, 9.425840248250976, 3.7490405520185206, 11.90732488494666, 0.41527687342900993, 2.283906332505083, 1.4873271773465033, 0.017639374442032903, 7.5417135485442595, 0.36626033490137383, 0.010288968616855786, 9.190879160087535, 8.578812159251465, 0.9309006204759651, 2.589832926942406, 5.9275314445711675, 9.20419901599871, 9.509760856833855, 0.6174889169718215, 0.293512902240336, 0.3683508888448232, 0.025492292549105646, 6.467078371447626, 0.9667090637629215, 0.753482751856601, 6.018693670116369, 0.21145152449383825, 9.241070486265953, 1.9264416422797073, 11.389704398895063, 11.660238653872781, 1.0681072159073601, 7.067854298834801, 5.025545104764668, 1.0470904596541715, 8.214765208552079, 8.789406371552822, 6.360480062085659, 1.0865695328357021, 2.170365443337798, 5.67155689199505, 2.2736903264534574, 2.512729132999647, 11.77732732420973, 6.821581447281921, 0.2599800839111687, 0.8833095270759007, 0.5550261698582977, 2.0208771925056026, 6.350607720269994, 10.163146608340021, 5.269650575779324, 2.1706452173893083, 0.09344633216359387, 1.233183815255775, 4.003645632339047, 2.3334196012506148, 0.01799804910247224, 4.481602340974389, 2.1027839641403747, 8.01579986500278, 4.183396101255497, 3.188709926966608, 0.2542368613682145, 0.021355670889339984, 0.19282922780931092, 7.269251551666884, 0.6094143009947088, 2.0924976332786547, 5.6087877940598805, 6.70544068890464, 7.944726427196629, 0.857937166913564, 1.1014584927534505, 0.387705600741639, 0.6671475843453105, 2.258958293079222, 0.857275630889653, 4.461504035530872, 0.0030835730428099696, 0.0014674532493931536, 0.008610071305155594, 3.1611599609243948, 8.627415288065555, 0.2591935942377191, 4.2892990574517835, 4.2115101078074755, 5.802846594591969, 2.615227410407473, 4.8060211682503855, 6.15507703086328, 0.7480245687225777, 3.887172643782379, 0.6510956947646657, 0.0999598168366008, 1.613343014363883, 7.623272857592629, 3.266647988240804, 2.536064532153749, 2.4353210202275397, 1.888068763089377, 0.36583527891471923, 2.812965377387405, 3.1312815166666854, 6.388050751681274, 2.0205783178672974, 2.632700713039552, 2.3210166597243926, 1.4319208824979488, 3.327245109864086, 10.45335241870111, 0.17265331558685015, 0.05975678065788168, 3.972636630694282, 3.6947844621819548, 0.11912722012848784, 2.8366341471114023, 0.3508769267047489, 8.34893509585602, 1.8420893589379346, 1.582074970395324, 0.621439680705372, 8.423520972183908, 11.270245042957496, 1.155516819417899, 0.008577677304464477, 0.004099561790934978, 10.437665326194663, 6.908173164758952, 1.9336090532055954, 7.671582975159823, 8.105105768363456, 2.9067044209991004, 8.089605539639965, 7.7893478841949815, 2.217736434687476, 3.647586128943387, 11.332693565786808, 0.015571255661067616, 4.838507864362095, 7.318918912887198, 11.83922166181965, 11.876904432580915, 0.019792074317205116, 1.3953586444801993, 3.045937209702902, 1.1821481502018392, 0.5360188631291474, 0.8106176292995677, 0.44212300588924414, 2.7515149396628957, 5.761081770872368, 2.138727387761445, 0.16830552074977398, 0.8610905141139945, 0.9567898660192948, 3.4515642827370785, 4.099287180081051, 1.5919689181587464, 11.074382671270104, 0.5556009113806128, 1.0616412972064844, 5.0586713979626206, 0.4327249570103343, 4.590484197752787, 2.0073297217605908, 9.032453679274319, 0.0752450793394515, 10.660823752838052, 5.440457871849006, 0.2584688951362268, 1.5933477402639924, 0.14067233087854256, 0.34348547398942497, 0.025009555324269964, 0.15906714386898635, 0.009587833888833696, 6.760168764124918, 4.611529060877468, 3.6955911597436644, 3.914629500932899, 7.450080269099176, 0.00257364772108104, 1.287536897834846, 4.300909244443825, 0.01984217072442528, 0.09715200600249606, 3.214794674208369, 0.016973794465879634, 11.520402949240863, 9.524248967310188, 3.6805608278087214, 0.5030330737246226, 5.817732921499685, 0.7256712853935627, 7.86841616435327, 0.04433470814637488, 7.787241602217301, 0.006210050046476497, 0.003148171496550587, 1.0858360919719081, 0.17658617929971443, 0.8219784334968204, 5.553020019301369, 1.0648175357220815, 0.049675914348634345, 8.826171231210559, 0.6612654424079604, 5.779775739328087, 3.2051350022811254, 9.270345518317736, 2.1902434101135664, 3.331160542919381, 9.401602306150917, 9.1974781234359, 10.68117962649997, 11.863823638401154, 9.267537919351652, 3.040673875488076, 7.072432955968684, 8.065876088505323, 1.6561198627711202, 11.538870053726049, 4.535547524157632, 5.033479796664488, 1.983149984209788, 0.746461921946178, 0.20888529101948608, 4.871457623936314, 0.21899501377027028, 2.760965638703262, 2.525556102424511, 0.6415707053936027, 2.4423056944581667, 5.516335249188246, 8.87324132671259, 2.2844849306670745, 3.835726977063182, 2.731835053746501, 7.19630446015272, 1.589000111929254, 0.4416059176063874, 8.006599170589475, 10.075788726892988, 2.1979222199321726, 1.3672083672579427, 6.248003243145258, 0.1295922802599479, 5.71770994376993, 5.85777657850895, 1.885332587788839, 7.276397177919309, 0.12333524366841302, 4.77059307286732, 4.6461163006217205, 5.443322814289732, 11.851539139660115, 8.09486135064526, 0.3970871338989359, 0.025092484010833294, 4.0978240638673675, 1.131793208471973, 5.813160551212713, 9.770204489247895, 0.8264775820837476, 0.174461436655322, 0.1812485400242847, 0.4690404939476899, 10.936711693935855, 0.614221978133298, 0.04539464595363146, 7.19120818607797, 4.458108593811746, 2.215834833022066, 0.48662688205735605, 11.868128416192647, 2.3434924170574583, 3.2726564178794866, 8.76317188481483, 0.050437414281315374, 6.917686752120409, 3.23777977008386, 11.022856364539921, 0.15674840843996954, 0.7641361175047908, 0.8168544373517792, 2.030034091663153, 2.430946536476201, 10.411741902341017, 4.796235072534974, 4.83086709606457, 7.850179360628113, 6.847334408413741, 0.038046903835300516, 2.626927126097624, 11.132510896431928, 6.8893107003702685, 9.303926472086284, 0.33761891090337365, 9.581704917243348, 2.973482729667924, 4.472831920182827, 7.84959095935963, 1.204377781688612, 10.934819209381324, 1.9899134859087617, 0.03451489100172097, 9.21156478197957, 2.5075444848846487, 2.419283453325528, 11.38895842059435, 4.947419121397851, 0.6325296479045245, 0.7810874731923315, 8.33499109499065, 0.8553645737382712, 0.7350851004000666, 9.16881288835423, 11.781906803086287, 2.2811351367708257, 10.649242105460766, 0.5589074937839352, 1.7422852442839203, 0.21562270232248731, 6.639280317217423, 8.917096654411258, 9.026259992056202, 9.47667342322596, 5.173771996229014, 9.947309815202917, 10.713535726470685, 6.507229159101223, 0.8362144062892759, 9.576296925994077, 1.8191596722246295, 6.1861137302355464, 6.319525583265802, 8.645028457028145, 0.1256002723116355, 4.057525234345336, 6.819543832959211, 0.046508977339261105, 0.3309279296052579, 6.441009931295143, 7.323065188550523, 9.492446780426398, 0.1790816170391113, 0.20383280396997516, 3.7804638364703056, 0.28757084383227505, 3.7379438302568206, 0.5694979182989096, 7.533482746902312, 0.03905450471230638, 3.322045581679172, 0.06645154566764165, 1.1563340354796305, 0.9425327250910255, 7.515383119181957, 0.04130804718782636, 0.0412674796166284, 8.887967150291114, 0.21584952412906871, 0.012044770692888307, 4.263305071236537, 0.017888034069565927, 0.14240848883268262, 1.0411653468115039, 5.376308912620288, 0.022482901261966618, 0.042951262081807, 2.071576152932652, 6.394791191321717, 0.4297964970633601, 2.9829277275560613, 1.021268406922535, 9.383172688336321, 2.5745072231666835, 0.2103612065675377, 8.584057457291864, 7.948884737718233, 5.710956031443337, 2.2710450396986994, 11.591917469250722, 10.83535993726516, 5.351753880073592, 0.313348723022211, 7.098064580369605, 7.355817572573088, 1.8780811604282188, 6.9507464126818865, 6.285829600951881, 5.66498694257174, 3.5575541626129183, 0.3954044437127821, 9.215451809483055, 8.764810459114827, 10.435601795980125, 10.96117312802622, 11.888863037516417, 0.7948108541106452, 11.068554517004577, 9.718440218642344, 1.2053537872583548, 10.784167694381587, 6.986777505128935, 0.12222241144218361, 1.5533116045270312, 0.01703745037772698, 3.852864824564666, 1.0284757209483193, 6.29371541085075, 1.8936493768360931, 10.400371844412346, 10.214703563037194, 1.2447908224881727, 7.472880724240991, 1.094432804263291, 8.23055759531432, 0.6449493811635565, 8.754020337485708, 0.524648193557011, 4.568423668727819, 5.234770622335593, 0.005022981546493526, 0.1446957500340461, 11.533833959290002, 9.353282447190399, 8.007295866794543, 4.04684567898494, 6.015972346539676, 0.14954722440319254, 3.7345322761071302, 0.05251766067058063, 0.031301331454494714, 5.274711820311582, 1.972485636353904, 1.3628112164745305, 3.344213314861508, 11.04527400853258, 1.58998699508275, 5.194380552505697, 2.3866696694331493, 0.00305574451998718, 6.249949574919404, 8.371450153332072, 7.504257498014574, 0.046450257004624906, 3.432659315781489, 3.094919170099029, 0.5084638397242054, 0.27461085996046913, 6.250180904088475, 3.4288009878993484, 4.333650992649466, 4.160422556694454, 1.808740908538723, 0.0431061267960132, 9.540438796870282, 0.2157978827967795, 0.2134444058063266, 6.8487298672079, 2.0029930832661202, 8.142944492621545, 3.2189119937227417, 0.7044291319485354, 0.2426917175027662, 5.045261862346615, 0.029086720540217655, 7.146275651806649, 5.485155053699198, 4.415739981524394, 0.7108809971711447, 8.113421049083152, 0.9751747862513239, 8.061731315118593, 0.05639888080420905, 6.407562986756629, 6.1446035455129175, 4.998300247861496, 0.44422964056401476, 11.88042533212143, 0.06813316791305828, 6.124636834065133, 0.9623390323555682, 7.333534124108906, 1.36893247083362, 4.062491162736054, 4.454555549471144, 9.557466833582243, 0.13602157604128315, 7.366928332528144, 0.469684836670652, 1.8006223719127026, 0.2659828326760526, 2.6126558283184784, 0.0037554831370146965, 0.9653387993207045, 7.917431567557766, 2.573947898653115, 1.5976813748539695, 3.980652747473516, 0.9467153066767963, 2.820701250193782, 7.742246698219581, 4.712694319688861, 0.5603962391912085, 6.671615643257528, 3.8654149200433046, 6.701890128732264, 0.3611292856876138, 2.3646168828618848, 7.054384253356455, 2.0711013421301807, 5.377219514404038, 2.6304163623402568, 0.05985731913466049, 8.509084665475212, 8.618758203238881, 11.371447592230393, 4.678999498567642, 7.231025295836477, 5.4115135485572035, 8.408429225534036, 1.1117072810401365, 10.209327566616182, 4.419083411473776, 5.505969884341506, 8.414767115191317, 10.317694381317398, 1.8456167493942301, 0.14114346116605136, 3.33848422378098, 6.205399188200815, 0.02543165824483408, 0.0034091993623207657, 8.514656277513456, 5.510051523502729, 0.15187657941198576, 6.220793461620882, 10.10115947465617, 2.04486163210254, 0.0020142819126726602, 2.2348524424215452, 3.09819620758077, 5.905353054333865, 0.4457572065283007, 1.0684474165092688, 4.184795791444853, 0.034893735460735854, 4.92525102130377, 0.1483209161963038, 9.09256969760782, 9.051500539677287, 0.737066179350755, 1.0366055654189503, 5.296401563079394, 9.231680667936784, 6.372375139680589, 1.0430111822013617, 0.8888004622290192, 4.294734784111154, 0.3301167624913223, 11.27020840199347, 0.9942288889341653, 1.283002540905668, 10.501160580180231, 0.6677931767497192, 2.1443518594956736, 3.2143765164699745, 0.8133081221020034, 8.304095045487548, 11.404643927313515, 2.91025446942637, 0.1653780991052892, 2.783523541474316, 1.9504241286875776, 9.879676715057238, 7.668436225478189, 0.7495645617551275, 3.1931022929511443, 6.647808895118724, 0.14280015348939565, 2.2377286718669436, 1.3733143581597427, 10.567839299935555, 2.5377503315825884, 5.055068657639191, 0.3080803010437966, 0.455038759718342, 2.0804032006325937, 0.013394267170388566, 3.5872091951659577, 0.8905433216657629, 3.942989583162419, 0.14340662152370565, 6.212802306725135, 1.144310234888499, 2.4238100961760667, 1.0557812722073832, 8.645186913473877, 10.685643805857767, 2.117461126491097, 2.768146612977786, 1.2067725827664515, 5.761125289223256, 2.83978721055265, 1.6503800234931758, 2.520469867870162, 4.02882387025755, 0.1877322896020114, 3.285036686568637, 0.43302147315012934, 5.9479831659325875, 3.5139456966843508, 3.3633328490690326, 0.4449089620365235, 3.543555171755375, 8.240945540401206, 0.9864260717211167, 0.010469427220758876, 0.6226478864088018, 1.4408240788554612, 9.73118641798303, 2.2546627634719076, 3.8840326815468744, 0.2723940492974422, 10.502210628302038, 0.3940192672844279, 1.6222853945489268, 3.5806555058115466, 5.551527616105758, 0.12519318418385714, 5.882229785989028, 0.09104285800901188, 5.779918923415658, 1.5033729412879229, 1.0618908759358359, 5.45228511313314, 2.1476973323633395, 4.883790869104248, 0.19445469516969038, 11.283096463688516, 2.5756703389987585, 11.55403574678236, 11.047626977667925, 0.2708180904754296, 1.0753552795110044, 10.543556958103823, 10.395248555814918, 3.615659696386154, 0.3517105567456594, 7.807190416268505, 0.3010955210548312, 4.133101138790833, 0.06638730191325716, 11.460229319245867, 0.15186417893841325, 0.3015718216769362, 1.9473574435448215, 3.9947023971422615, 0.7631005619015759, 1.087900024983495]} diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.js b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.js index e668d4a896e4..39c187f9ff4f 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.js +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.js @@ -87,7 +87,7 @@ tape( 'the function returns the variance of an anglit distribution', function te sigma = data.sigma; for ( i = 0; i < expected.length; i++ ) { y = variance( mu[i], sigma[i] ); - t.strictEqual( isAlmostSameValue( y, expected[i], 1 ), true, 'returns expected value' ); + t.strictEqual( isAlmostSameValue( y, expected[i], 5 ), true, 'returns expected value' ); } t.end(); }); diff --git a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.native.js b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.native.js index 5e96371c1052..c591d31b8ed4 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.native.js +++ b/lib/node_modules/@stdlib/stats/base/dists/anglit/variance/test/test.native.js @@ -96,7 +96,7 @@ tape( 'the function returns the variance of an anglit distribution', opts, funct sigma = data.sigma; for ( i = 0; i < expected.length; i++ ) { y = variance( mu[i], sigma[i] ); - t.strictEqual( isAlmostSameValue( y, expected[i], 1 ), true, 'returns expected value' ); + t.strictEqual( isAlmostSameValue( y, expected[i], 5 ), true, 'returns expected value' ); } t.end(); });