From b61c7b73c6e90864b35146fdea95c18d0a34e85d Mon Sep 17 00:00:00 2001 From: Vishal Gaikwad Date: Mon, 5 Jan 2026 15:26:13 +0530 Subject: [PATCH 1/7] bench: refactor to use string interpolation in buffer/from-array-buffer --- 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: passed - 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 --- --- .../buffer/from-arraybuffer/benchmark/benchmark.length.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/buffer/from-arraybuffer/benchmark/benchmark.length.js b/lib/node_modules/@stdlib/buffer/from-arraybuffer/benchmark/benchmark.length.js index ca9820cc557c..dec1bff341ee 100644 --- a/lib/node_modules/@stdlib/buffer/from-arraybuffer/benchmark/benchmark.length.js +++ b/lib/node_modules/@stdlib/buffer/from-arraybuffer/benchmark/benchmark.length.js @@ -25,6 +25,7 @@ var pow = require( '@stdlib/math/base/special/pow' ); var isBuffer = require( '@stdlib/assert/is-buffer' ); var ArrayBuffer = require( '@stdlib/array/buffer' ); var Uint8Array = require( '@stdlib/array/uint8' ); +var format = require( '@stdlib/string/format' ); var pkg = require( './../package.json' ).name; var arraybuffer2buffer = require( './../lib' ); @@ -95,7 +96,7 @@ function main() { for ( i = min; i <= max; i++ ) { len = pow( 10, i ); f = createBenchmark( len ); - bench( pkg+':len='+len, f ); + bench( format( '%s:len=%d', pkg, len ), f ); } } From 96038dec3dccd05e780d3969bb3d709321f10a1d Mon Sep 17 00:00:00 2001 From: ivishal-g Date: Sun, 18 Jan 2026 13:52:09 +0530 Subject: [PATCH 2/7] docs: improve doctests for complex number instances in math/base/special/cflipsign --- .../@stdlib/math/base/special/cflipsign/README.md | 9 +-------- .../@stdlib/math/base/special/cflipsign/docs/repl.txt | 6 +----- .../math/base/special/cflipsign/docs/types/index.d.ts | 10 +--------- .../@stdlib/math/base/special/cflipsign/lib/index.js | 10 +--------- .../@stdlib/math/base/special/cflipsign/lib/main.js | 10 +--------- .../@stdlib/math/base/special/cflipsign/lib/native.js | 10 +--------- 6 files changed, 6 insertions(+), 49 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cflipsign/README.md b/lib/node_modules/@stdlib/math/base/special/cflipsign/README.md index ecd0516f9d2b..65fe10322c4f 100644 --- a/lib/node_modules/@stdlib/math/base/special/cflipsign/README.md +++ b/lib/node_modules/@stdlib/math/base/special/cflipsign/README.md @@ -46,17 +46,10 @@ Returns a double-precision complex floating-point number with the same magnitude ```javascript var Complex128 = require( '@stdlib/complex/float64/ctor' ); -var real = require( '@stdlib/complex/float64/real' ); -var imag = require( '@stdlib/complex/float64/imag' ); var v = cflipsign( new Complex128( -4.2, 5.5 ), -1.0 ); -// returns +// returns [ 4.2, -5.5 ] -var re = real( v ); -// returns 4.2 - -var im = imag( v ); -// returns -5.5 ``` diff --git a/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/repl.txt index 067b1408dc36..58015b6199aa 100644 --- a/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/repl.txt +++ b/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/repl.txt @@ -19,11 +19,7 @@ Examples -------- > var v = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( -4.2, 5.5 ), -9.0 ) - - > var re = {{alias:@stdlib/complex/float64/real}}( v ) - 4.2 - > var im = {{alias:@stdlib/complex/float64/imag}}( v ) - -5.5 + [ 4.2, -5.5 ] See Also -------- diff --git a/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/types/index.d.ts index 8352d2a23899..4f3e27f9f77e 100644 --- a/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/types/index.d.ts @@ -31,17 +31,9 @@ import { Complex128 } from '@stdlib/types/complex'; * * @example * var Complex128 = require( '@stdlib/complex/float64/ctor' ); -* var real = require( '@stdlib/complex/float64/real' ); -* var imag = require( '@stdlib/complex/float64/imag' ); * * var v = cflipsign( new Complex128( -4.2, 5.5 ), -55.0 ); -* // returns -* -* var re = real( v ); -* // returns 4.2 -* -* var im = imag( v ); -* // returns -5.5 +* // returns [ 4.2, -5.5 ] */ declare function cflipsign( z: Complex128, y: number ): Complex128; diff --git a/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/index.js b/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/index.js index 0e6964eea28d..5d33aa5197cb 100644 --- a/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/index.js +++ b/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/index.js @@ -25,18 +25,10 @@ * * @example * var Complex128 = require( '@stdlib/complex/float64/ctor' ); -* var real = require( '@stdlib/complex/float64/real' ); -* var imag = require( '@stdlib/complex/float64/imag' ); * var cflipsign = require( '@stdlib/math/base/special/cflipsign' ); * * var v = cflipsign( new Complex128( -4.2, 5.5 ), -55.0 ); -* // returns -* -* var re = real( v ); -* // returns 4.2 -* -* var im = imag( v ); -* // returns -5.5 +* // returns [ 4.2, -5.5 ] */ // MODULES // diff --git a/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/main.js b/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/main.js index e2b8619e43e7..de6664213096 100644 --- a/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/main.js @@ -37,17 +37,9 @@ var imag = require( '@stdlib/complex/float64/imag' ); * * @example * var Complex128 = require( '@stdlib/complex/float64/ctor' ); -* var real = require( '@stdlib/complex/float64/real' ); -* var imag = require( '@stdlib/complex/float64/imag' ); * * var v = cflipsign( new Complex128( -4.2, 5.5 ), -55.0 ); -* // returns -* -* var re = real( v ); -* // returns 4.2 -* -* var im = imag( v ); -* // returns -5.5 +* // returns [ 4.2, -5.5 ] */ function cflipsign( z, y ) { var re = real( z ); diff --git a/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/native.js b/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/native.js index 799f68d7c49c..25d06071fa6c 100644 --- a/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/native.js +++ b/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/native.js @@ -36,17 +36,9 @@ var addon = require( './../src/addon.node' ); * * @example * var Complex128 = require( '@stdlib/complex/float64/ctor' ); -* var real = require( '@stdlib/complex/float64/real' ); -* var imag = require( '@stdlib/complex/float64/imag' ); * * var v = cflipsign( new Complex128( -4.2, 5.5 ), -55.0 ); -* // returns -* -* var re = real( v ); -* // returns 4.2 -* -* var im = imag( v ); -* // returns -5.5 +* // returns [ 4.2, -5.5 ] */ function cflipsign( z, y ) { var v = addon( z, y ); From 6f352296be76c22f61df4efb82f2f791d22dd662 Mon Sep 17 00:00:00 2001 From: ivishal-g Date: Sun, 18 Jan 2026 14:30:08 +0530 Subject: [PATCH 3/7] problem --- .../@stdlib/math/base/special/cflipsign/README.md | 9 ++++++++- .../@stdlib/math/base/special/cflipsign/docs/repl.txt | 6 +++++- .../math/base/special/cflipsign/docs/types/index.d.ts | 10 +++++++++- .../@stdlib/math/base/special/cflipsign/lib/index.js | 10 +++++++++- .../@stdlib/math/base/special/cflipsign/lib/main.js | 10 +++++++++- .../@stdlib/math/base/special/cflipsign/lib/native.js | 10 +++++++++- 6 files changed, 49 insertions(+), 6 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cflipsign/README.md b/lib/node_modules/@stdlib/math/base/special/cflipsign/README.md index 65fe10322c4f..ecd0516f9d2b 100644 --- a/lib/node_modules/@stdlib/math/base/special/cflipsign/README.md +++ b/lib/node_modules/@stdlib/math/base/special/cflipsign/README.md @@ -46,10 +46,17 @@ Returns a double-precision complex floating-point number with the same magnitude ```javascript var Complex128 = require( '@stdlib/complex/float64/ctor' ); +var real = require( '@stdlib/complex/float64/real' ); +var imag = require( '@stdlib/complex/float64/imag' ); var v = cflipsign( new Complex128( -4.2, 5.5 ), -1.0 ); -// returns [ 4.2, -5.5 ] +// returns +var re = real( v ); +// returns 4.2 + +var im = imag( v ); +// returns -5.5 ``` diff --git a/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/repl.txt index 58015b6199aa..067b1408dc36 100644 --- a/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/repl.txt +++ b/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/repl.txt @@ -19,7 +19,11 @@ Examples -------- > var v = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( -4.2, 5.5 ), -9.0 ) - [ 4.2, -5.5 ] + + > var re = {{alias:@stdlib/complex/float64/real}}( v ) + 4.2 + > var im = {{alias:@stdlib/complex/float64/imag}}( v ) + -5.5 See Also -------- diff --git a/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/types/index.d.ts index 4f3e27f9f77e..8352d2a23899 100644 --- a/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/math/base/special/cflipsign/docs/types/index.d.ts @@ -31,9 +31,17 @@ import { Complex128 } from '@stdlib/types/complex'; * * @example * var Complex128 = require( '@stdlib/complex/float64/ctor' ); +* var real = require( '@stdlib/complex/float64/real' ); +* var imag = require( '@stdlib/complex/float64/imag' ); * * var v = cflipsign( new Complex128( -4.2, 5.5 ), -55.0 ); -* // returns [ 4.2, -5.5 ] +* // returns +* +* var re = real( v ); +* // returns 4.2 +* +* var im = imag( v ); +* // returns -5.5 */ declare function cflipsign( z: Complex128, y: number ): Complex128; diff --git a/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/index.js b/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/index.js index 5d33aa5197cb..0e6964eea28d 100644 --- a/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/index.js +++ b/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/index.js @@ -25,10 +25,18 @@ * * @example * var Complex128 = require( '@stdlib/complex/float64/ctor' ); +* var real = require( '@stdlib/complex/float64/real' ); +* var imag = require( '@stdlib/complex/float64/imag' ); * var cflipsign = require( '@stdlib/math/base/special/cflipsign' ); * * var v = cflipsign( new Complex128( -4.2, 5.5 ), -55.0 ); -* // returns [ 4.2, -5.5 ] +* // returns +* +* var re = real( v ); +* // returns 4.2 +* +* var im = imag( v ); +* // returns -5.5 */ // MODULES // diff --git a/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/main.js b/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/main.js index de6664213096..e2b8619e43e7 100644 --- a/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/main.js @@ -37,9 +37,17 @@ var imag = require( '@stdlib/complex/float64/imag' ); * * @example * var Complex128 = require( '@stdlib/complex/float64/ctor' ); +* var real = require( '@stdlib/complex/float64/real' ); +* var imag = require( '@stdlib/complex/float64/imag' ); * * var v = cflipsign( new Complex128( -4.2, 5.5 ), -55.0 ); -* // returns [ 4.2, -5.5 ] +* // returns +* +* var re = real( v ); +* // returns 4.2 +* +* var im = imag( v ); +* // returns -5.5 */ function cflipsign( z, y ) { var re = real( z ); diff --git a/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/native.js b/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/native.js index 25d06071fa6c..799f68d7c49c 100644 --- a/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/native.js +++ b/lib/node_modules/@stdlib/math/base/special/cflipsign/lib/native.js @@ -36,9 +36,17 @@ var addon = require( './../src/addon.node' ); * * @example * var Complex128 = require( '@stdlib/complex/float64/ctor' ); +* var real = require( '@stdlib/complex/float64/real' ); +* var imag = require( '@stdlib/complex/float64/imag' ); * * var v = cflipsign( new Complex128( -4.2, 5.5 ), -55.0 ); -* // returns [ 4.2, -5.5 ] +* // returns +* +* var re = real( v ); +* // returns 4.2 +* +* var im = imag( v ); +* // returns -5.5 */ function cflipsign( z, y ) { var v = addon( z, y ); From cc593a4ebc654407f643253b6daec88c69869be9 Mon Sep 17 00:00:00 2001 From: ivishal-g Date: Wed, 21 Jan 2026 01:10:03 +0530 Subject: [PATCH 4/7] feat: add math/base/special/acschf --- 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: na - task: lint_r status: na - task: lint_c_src status: missing_dependencies - task: lint_c_examples status: missing_dependencies - task: lint_c_benchmarks status: missing_dependencies - 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 --- --- .../math/base/special/acschf/README.md | 214 +++++++++ .../special/acschf/benchmark/benchmark.js | 50 ++ .../acschf/benchmark/benchmark.native.js | 59 +++ .../acschf/benchmark/c/native/Makefile | 146 ++++++ .../acschf/benchmark/c/native/benchmark.c | 137 ++++++ .../special/acschf/benchmark/julia/REQUIRE | 2 + .../acschf/benchmark/julia/benchmark.jl | 103 ++++ .../math/base/special/acschf/binding.gyp | 170 +++++++ .../math/base/special/acschf/docs/repl.txt | 38 ++ .../base/special/acschf/docs/types/index.d.ts | 44 ++ .../base/special/acschf/docs/types/test.ts | 44 ++ .../base/special/acschf/examples/c/Makefile | 146 ++++++ .../base/special/acschf/examples/c/example.c | 31 ++ .../base/special/acschf/examples/index.js | 29 ++ .../math/base/special/acschf/include.gypi | 53 +++ .../include/stdlib/math/base/special/acschf.h | 38 ++ .../math/base/special/acschf/lib/index.js | 46 ++ .../math/base/special/acschf/lib/main.js | 56 +++ .../math/base/special/acschf/lib/native.js | 58 +++ .../math/base/special/acschf/manifest.json | 72 +++ .../math/base/special/acschf/package.json | 151 ++++++ .../math/base/special/acschf/src/Makefile | 70 +++ .../math/base/special/acschf/src/addon.c | 22 + .../math/base/special/acschf/src/main.c | 34 ++ .../acschf/test/fixtures/julia/REQUIRE | 2 + .../test/fixtures/julia/huge_negative.json | 1 + .../test/fixtures/julia/huge_positive.json | 1 + .../test/fixtures/julia/large_negative.json | 1 + .../test/fixtures/julia/large_positive.json | 1 + .../test/fixtures/julia/larger_negative.json | 1 + .../test/fixtures/julia/larger_positive.json | 1 + .../test/fixtures/julia/medium_negative.json | 1 + .../test/fixtures/julia/medium_positive.json | 1 + .../acschf/test/fixtures/julia/runner.jl | 114 +++++ .../test/fixtures/julia/small_negative.json | 1 + .../test/fixtures/julia/small_positive.json | 1 + .../acschf/test/fixtures/julia/smaller.json | 1 + .../test/fixtures/julia/tiny_negative.json | 1 + .../test/fixtures/julia/tiny_positive.json | 1 + .../math/base/special/acschf/test/test.js | 412 ++++++++++++++++ .../base/special/acschf/test/test.native.js | 441 ++++++++++++++++++ 41 files changed, 2795 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/README.md create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/benchmark.c create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/REQUIRE create mode 100755 lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/benchmark.jl create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/binding.gyp create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/examples/c/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/examples/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/include.gypi create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/include/stdlib/math/base/special/acschf.h create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/lib/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/lib/main.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/lib/native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/manifest.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/package.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/src/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/src/addon.c create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/src/main.c create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/REQUIRE create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_positive.json create mode 100755 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/smaller.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/test.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/README.md b/lib/node_modules/@stdlib/math/base/special/acschf/README.md new file mode 100644 index 000000000000..14cbf31ff47c --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/README.md @@ -0,0 +1,214 @@ + + +# acschf + +> Compute the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a single-precision floating-point number. + +
+ +## Usage + +```javascript +var acschf = require( '@stdlib/math/base/special/acschf' ); +``` + +#### acschf( x ) + +Computes the [hyperbolic arccosecant][inverse-hyperbolic-functions] of `x`. + +```javascript +var v = acschf( 0.0 ); +// returns Infinity + +v = acschf( -0.0 ); +// returns -Infinity + +v = acschf( 1.0 ); +// returns ~0.881 + +v = acschf( -1.0 ); +// returns ~-0.881 + +v = acschf( NaN ); +// returns NaN + +v = acschf( -Infinity ); +// returns -0.0 + +v = acschf( Infinity ); +// returns 0.0 +``` + +
+ + + +
+ +## Examples + + + +```javascript +var uniform = require( '@stdlib/random/array/uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); +var acschf = require( '@stdlib/math/base/special/acschf' ); + +var x = uniform( 100, 1.0, 5.0, { + 'dtype': 'float32' +}); + +logEachMap( 'acschf(%0.4f) = %0.4f', x, acschf ); +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/acschf.h" +``` + +#### stdlib_base_acschf( x ) + +> Compute the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a single-precision floating-point number. + +```c +float out = stdlib_base_acschf( 1.0 ); +// returns ~0.881 +``` + +The function accepts the following arguments: + +- **x**: `[in] float` input value. + +```c +float stdlib_base_acschf( const float x ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/acschf.h" +#include + +int main( void ) { + const float x[] = { -5.0, -3.89, -2.78, -1.67, -0.55, 0.55, 1.67, 2.78, 3.89, 5.0 }; + + float v; + int i; + for ( i = 0; i < 10; i++ ) { + v = stdlib_base_acschf( x[ i ] ); + printf( "acsch(%f) = %f\n", x[ i ], v ); + } +} +``` + +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js new file mode 100644 index 000000000000..ba2d2993a11c --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js @@ -0,0 +1,50 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2022 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 f32 = require( '@stdlib/number/float64/base/to-float32' ); +var pkg = require( './../package.json' ).name; +var acschf = require( './../lib' ); + + +// MAIN // + +bench( pkg, function benchmark( b ) { + var x; + var i; + + x = f32( 1.234567 ); + i = 0; + + b.tic(); + while ( i < b.iterations ) { + x = acschf( x ); + i += 1; + } + b.toc(); + + if ( x !== x ) { + b.fail( 'unexpected NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js new file mode 100644 index 000000000000..b6738d88401a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js @@ -0,0 +1,59 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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 f32 = require( '@stdlib/number/float64/base/to-float32' ); +var pkg = require( './../package.json' ).name; + + +// VARIABLES // + +var acschf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( acschf instanceof Error ) +}; + + +// MAIN // + +bench( pkg+'::native', opts, function benchmark( b ) { + var x; + var i; + + x = f32( 1.234567 ); + i = 0; + + b.tic(); + while ( i < b.iterations ) { + x = acschf( x ); + i += 1; + } + b.toc(); + + if ( x !== x ) { + b.fail( 'unexpected NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/Makefile new file mode 100644 index 000000000000..f69e9da2b4d3 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2024 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 + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := benchmark.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled benchmarks. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/benchmark.c new file mode 100644 index 000000000000..e8f0ccd9c5b8 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/benchmark.c @@ -0,0 +1,137 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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/math/base/special/acschf.h" +#include +#include +#include +#include +#include + +#define NAME "acschf" +#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 ); + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmark results. +* +* @param elapsed elapsed time in seconds +*/ +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" ); +} + +/** +* 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 float on the interval [0,1). +* +* @return random float +*/ +static float rand_float( void ) { + int r = rand(); + return (float)r / ( (float)RAND_MAX + 1.0f ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + float x[ 100 ]; + double elapsed; + float y; + double t; + int i; + + for ( i = 0; i < 100; i++ ) { + x[ i ] = ( 200.0f * rand_float() ) - 100.0f; + } + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + y = stdlib_base_acschf( x[ 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; +} + +/** +* Main execution sequence. +*/ +int main( void ) { + double elapsed; + int i; + + // Seed the random number generator: + srand( time( NULL ) ); + + print_version(); + for ( i = 0; i < REPEATS; i++ ) { + printf( "# c::native::%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/math/base/special/acschf/benchmark/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/REQUIRE new file mode 100644 index 000000000000..98645e192e41 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +BenchmarkTools 0.5.0 diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/benchmark.jl b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/benchmark.jl new file mode 100755 index 000000000000..e5be3e2e082c --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/benchmark.jl @@ -0,0 +1,103 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2024 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 BenchmarkTools +using Printf +using SpecialFunctions: acsch + +# Float32 version (matches stdlib acschf semantics): +acschf(x::Float32) = Float32( acsch( Float64(x) ) ) + +# Benchmark variables: +name = "acschf"; +repeats = 3; + +""" + print_version() + +Prints the TAP version. +""" +function print_version() + @printf( "TAP version 13\n" ); +end + +""" + print_summary( total, passing ) + +Print the benchmark summary. +""" +function print_summary( total, passing ) + @printf( "#\n" ); + @printf( "1..%d\n", total ); + @printf( "# total %d\n", total ); + @printf( "# pass %d\n", passing ); + @printf( "#\n" ); + @printf( "# ok\n" ); +end + +""" + print_results( iterations, elapsed ) + +Print benchmark results. +""" +function print_results( iterations, elapsed ) + rate = iterations / elapsed + + @printf( " ---\n" ); + @printf( " iterations: %d\n", iterations ); + @printf( " elapsed: %0.9f\n", elapsed ); + @printf( " rate: %0.9f\n", rate ); + @printf( " ...\n" ); +end + +""" + benchmark() + +Run a benchmark. +""" +function benchmark() + t = BenchmarkTools.@benchmark acschf( + Float32( (200.0*rand()) - 100.0 ) + ) samples=1e6 + + # Total elapsed time (seconds): + s = sum( t.times ) / 1.0e9; + + # Number of iterations: + iter = length( t.times ); + + [ iter, s ]; +end + +""" + main() + +Run benchmarks. +""" +function main() + print_version(); + for i in 1:repeats + @printf( "# julia::%s\n", name ); + results = benchmark(); + print_results( results[1], results[2] ); + @printf( "ok %d benchmark finished\n", i ); + end + print_summary( repeats, repeats ); +end + +main(); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/binding.gyp b/lib/node_modules/@stdlib/math/base/special/acschf/binding.gyp new file mode 100644 index 000000000000..ec3992233442 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/binding.gyp @@ -0,0 +1,170 @@ +# @license Apache-2.0 +# +# Copyright (c) 2024 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 +{ + # List of files to include in this file: + 'includes': [ + './include.gypi', + ], + + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Target name should match the add-on export name: + 'addon_target_name%': 'addon', + + # Set variables based on the host OS: + 'conditions': [ + [ + 'OS=="win"', + { + # Define the object file suffix: + 'obj': 'obj', + }, + { + # Define the object file suffix: + 'obj': 'o', + } + ], # end condition (OS=="win") + ], # end conditions + }, # end variables + + # Define compile targets: + 'targets': [ + + # Target to generate an add-on: + { + # The target name should match the add-on export name: + 'target_name': '<(addon_target_name)', + + # Define dependencies: + 'dependencies': [], + + # Define directories which contain relevant include headers: + 'include_dirs': [ + # Local include directory: + '<@(include_dirs)', + ], + + # List of source files: + 'sources': [ + '<@(src_files)', + ], + + # Settings which should be applied when a target's object files are used as linker input: + 'link_settings': { + # Define libraries: + 'libraries': [ + '<@(libraries)', + ], + + # Define library directories: + 'library_dirs': [ + '<@(library_dirs)', + ], + }, + + # C/C++ compiler flags: + 'cflags': [ + # Enable commonly used warning options: + '-Wall', + + # Aggressive optimization: + '-O3', + ], + + # C specific compiler flags: + 'cflags_c': [ + # Specify the C standard to which a program is expected to conform: + '-std=c99', + ], + + # C++ specific compiler flags: + 'cflags_cpp': [ + # Specify the C++ standard to which a program is expected to conform: + '-std=c++11', + ], + + # Linker flags: + 'ldflags': [], + + # Apply conditions based on the host OS: + 'conditions': [ + [ + 'OS=="mac"', + { + # Linker flags: + 'ldflags': [ + '-undefined dynamic_lookup', + '-Wl,-no-pie', + '-Wl,-search_paths_first', + ], + }, + ], # end condition (OS=="mac") + [ + 'OS!="win"', + { + # C/C++ flags: + 'cflags': [ + # Generate platform-independent code: + '-fPIC', + ], + }, + ], # end condition (OS!="win") + ], # end conditions + }, # end target <(addon_target_name) + + # Target to copy a generated add-on to a standard location: + { + 'target_name': 'copy_addon', + + # Declare that the output of this target is not linked: + 'type': 'none', + + # Define dependencies: + 'dependencies': [ + # Require that the add-on be generated before building this target: + '<(addon_target_name)', + ], + + # Define a list of actions: + 'actions': [ + { + 'action_name': 'copy_addon', + 'message': 'Copying addon...', + + # Explicitly list the inputs in the command-line invocation below: + 'inputs': [], + + # Declare the expected outputs: + 'outputs': [ + '<(addon_output_dir)/<(addon_target_name).node', + ], + + # Define the command-line invocation: + 'action': [ + 'cp', + '<(PRODUCT_DIR)/<(addon_target_name).node', + '<(addon_output_dir)/<(addon_target_name).node', + ], + }, + ], # end actions + }, # end target copy_addon + ], # end targets +} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/acschf/docs/repl.txt new file mode 100644 index 000000000000..e29775029c40 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/docs/repl.txt @@ -0,0 +1,38 @@ +{{alias}}( x ) + Computes the hyperbolic arccosecant of a single-precision floating-point + number. + + The hyperbolic arccosecant is defined as + + acsch(x) = asinh(1/x) + + If `x` is zero, the function returns positive or negative infinity, + depending on the sign of `x`. + + Parameters + ---------- + x: number + Input value. + + Returns + ------- + y: number + Hyperbolic arccosecant. + + Examples + -------- + > var y = {{alias}}( 1.0 ) + ~0.8814 + + > y = {{alias}}( -1.0 ) + ~-0.8814 + + > y = {{alias}}( 0.0 ) + Infinity + + > y = {{alias}}( NaN ) + NaN + + See Also + -------- + diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/index.d.ts new file mode 100644 index 000000000000..14056ee4122b --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/index.d.ts @@ -0,0 +1,44 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2022 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 + +/** +* Computes the hyperbolic arccosecant of a single-precision floating-point number. +* +* @param x - input value +* @returns hyperbolic arccosecant +* +* @example +* var v = acschf( 0.0 ); +* // returns Infinity +* +* @example +* var v = acschf( -1.0 ); +* // returns ~-0.881 +* +* @example +* var v = acschf( 1.0 ); +* // returns ~0.881 +*/ +declare function acschf( x: number ): number; + + +// EXPORTS // + +export = acschf; diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/test.ts new file mode 100644 index 000000000000..59e7363dd151 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/test.ts @@ -0,0 +1,44 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2022 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 acschf = require( './index' ); + + +// TESTS // + +// The function returns a number... +{ + acschf( 8 ); // $ExpectType number +} + +// The compiler throws an error if the function is provided a value other than a number... +{ + acschf( true ); // $ExpectError + acschf( false ); // $ExpectError + acschf( null ); // $ExpectError + acschf( undefined ); // $ExpectError + acschf( '5' ); // $ExpectError + acschf( [] ); // $ExpectError + acschf( {} ); // $ExpectError + acschf( ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the function is provided insufficient arguments... +{ + acschf(); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/Makefile new file mode 100644 index 000000000000..6aed70daf167 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2024 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 + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := example.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled examples. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c new file mode 100644 index 000000000000..810707091c6f --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c @@ -0,0 +1,31 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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/math/base/special/acschf.h" +#include + +int main( void ) { + const float x[] = { -5.0f, -3.89f, -2.78f, -1.67f, -0.55f, 0.55f, 1.67f, 2.78f, 3.89f, 5.0f }; + + float v; + int i; + for ( i = 0; i < 10; i++ ) { + v = stdlib_base_acschf( x[ i ] ); + printf( "acschf(%f) = %f\n", x[ i ], v ); + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/examples/index.js b/lib/node_modules/@stdlib/math/base/special/acschf/examples/index.js new file mode 100644 index 000000000000..317448161f82 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/examples/index.js @@ -0,0 +1,29 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2022 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 acschf = require( './../lib' ); + +var x = uniform( 100, 1.0, 5.0, { + 'dtype': 'float32' +}); + +logEachMap( 'acschf(%0.4f) = %0.4f', x, acschf ); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/include.gypi b/lib/node_modules/@stdlib/math/base/special/acschf/include.gypi new file mode 100644 index 000000000000..575cb043c0bf --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/include.gypi @@ -0,0 +1,53 @@ +# @license Apache-2.0 +# +# Copyright (c) 2024 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", + "mathematics", + "math", + "acschf", + "hyperbolic", + "inverse", + "cosecant", + "csc", + "arc", + "arccosecant", + "trig", + "trigonometry", + "angle" + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "acsch", + "alias": "acschf", + "pkg_desc": "compute the hyperbolic arccosecant of a single-precision floating-point number", + "desc": "computes the hyperbolic arccosecant of a single-precision floating-point number", + "short_desc": "hyperbolic arccosecant", + "parameters": [ + { + "name": "x", + "desc": "input value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + }, + "domain": [ + { + "min": "-infinity", + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + 0.5, + 5 + ] + }, + "example_values": [ + -5, + -3.7, + -2.9, + -2.1, + -1.7, + -1.3, + -1.1, + -0.7, + -0.51, + -0.25, + 0.25, + 0.51, + 0.7, + 1.1, + 1.3, + 1.7, + 2.1, + 2.9, + 3.7, + 5 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "hyperbolic arccosecant", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + } + }, + "keywords": [ + "acsch", + "hyperbolic", + "inverse", + "cosecant", + "csc", + "arc", + "arccosecant", + "angle", + "asinh" + ], + "extra_keywords": [ + "math.asinh" + ] + } + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/acschf/src/Makefile new file mode 100644 index 000000000000..bcf18aa46655 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/src/Makefile @@ -0,0 +1,70 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2024 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/math/base/special/acschf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/acschf/src/addon.c new file mode 100644 index 000000000000..6a37b431f3fc --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/src/addon.c @@ -0,0 +1,22 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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/math/base/special/acschf.h" +#include "stdlib/math/base/napi/unary.h" + +STDLIB_MATH_BASE_NAPI_MODULE_F_F( stdlib_base_acschf ) diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/src/main.c b/lib/node_modules/@stdlib/math/base/special/acschf/src/main.c new file mode 100644 index 000000000000..d774b378ce0f --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/src/main.c @@ -0,0 +1,34 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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/math/base/special/acschf.h" +#include "stdlib/math/base/special/asinhf.h" + +/** +* Computes the hyperbolic arccosecant of a single-precision floating-point number. +* +* @param x input value +* @return output value +* +* @example +* float out = stdlib_base_acschf( 1.0f ); +* // returns ~0.881f +*/ +float stdlib_base_acschf( const float x ) { + return stdlib_base_asinhf( 1.0f / x ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..308c3be89c85 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_negative.json new file mode 100644 index 000000000000..ada599e16e22 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_negative.json @@ -0,0 +1 @@ +{"expected":[-1.0e-200,-5.019974849926002e-206,-2.509993725015688e-206,-1.6733305500268516e-206,-1.2549984375269452e-206,-1.003999002024992e-206,-8.36665975022794e-207,-7.171423500207668e-207,-6.274996125189893e-207,-5.5777747223967364e-207,-5.0199975301612156e-207,-4.563634326595951e-207,-4.1833316251395865e-207,-3.8615370090064635e-207,-3.58571303583717e-207,-3.3466655801159086e-207,-3.1374990469846644e-207,-2.9529403340140812e-207,-2.7888881389878562e-207,-2.642104591507096e-207,-2.5099993950901458e-207,-2.3904756429434362e-207,-2.281817683967051e-207,-2.1826082411002838e-207,-2.091666250076472e-207,-2.0079996168736732e-207,-1.9307688772900055e-207,-1.85925893216741e-207,-1.7928568393520922e-207,-1.7310342004209735e-207,-1.6733330700622636e-207,-1.619354592672254e-207,-1.5687497695898776e-207,-1.5212119050156414e-207,-1.4764703850034883e-207,-1.4342855229110461e-207,-1.3944442639413815e-207,-1.3567565862454559e-207,-1.3210524702714879e-207,-1.287179334368197e-207,-1.2549998550475168e-207,-1.2243901062332101e-207,-1.1952379643310801e-207,-1.1674417358474984e-207,-1.1409089721508387e-207,-1.1155554422647029e-207,-1.0913042396446232e-207,-1.0680850029832605e-207,-1.04583323441494e-207,-1.0244897012053398e-207,-1.0039999092384082e-207,-9.8431363844599e-208,-9.653845318417232e-208,-9.471697310793945e-208,-9.296295525048076e-208,-9.127271985474441e-208,-8.964285000344445e-208,-8.807016856294298e-208,-8.655171751224783e-208,-8.508473937414584e-208,-8.366666050322268e-208,-8.229507601768385e-208,-8.096773618938647e-208,-7.968253413005834e-208,-7.843749463193396e-208,-7.723076403848556e-208,-7.606060103599666e-208,-7.492536826977087e-208,-7.382352470008681e-208,-7.275361862285264e-208,-7.171428128849008e-208,-7.07042210600677e-208,-6.972221805825642e-208,-6.876711924642546e-208,-6.7837833914244195e-208,-6.693332952259577e-208,-6.605262787652375e-208,-6.519480159639082e-208,-6.435897086048672e-208,-6.354430039503303e-208,-6.274999668993768e-208,-6.197530542078969e-208,-6.1219509059488565e-208,-6.048192465759923e-208,-5.976190178803869e-208,-5.90588206320555e-208,-5.837209019967563e-208,-5.770114667287634e-208,-5.704545186172533e-208,-5.640449176460055e-208,-5.577777522439518e-208,-5.516483267332459e-208,-5.456521495959368e-208,-5.397849224976309e-208,-5.340425300117711e-208,-5.284210299929096e-208,-5.229166445516502e-208,-5.175257515878423e-208,-5.122448768421499e-208,-5.070706864293447e-208,-5.019999798196008e-208,-4.970296832367423e-208,-4.921568434448297e-208,-4.8737862189669224e-208,-4.826922892200451e-208,-4.780952200186855e-208,-4.7358488796796086e-208,-4.691588611852571e-208,-4.648147978576824e-208,-4.60550442110429e-208,-4.563636201004964e-208,-4.522522363215654e-208,-4.482142701068245e-208,-4.442477723174882e-208,-4.403508622056022e-208,-4.365217244405298e-208,-4.3275860628923946e-208,-4.290598149411941e-208,-4.254237149692622e-208,-4.218487259186503e-208,-4.183333200163893e-208,-4.1487601999439965e-208,-4.114753970196188e-208,-4.0813006872509785e-208,-4.048386973363687e-208,-4.015999878877444e-208,-3.9841268652355795e-208,-3.952755788796581e-208,-3.921874885407718e-208,-3.8914727556961756e-208,-3.8615383510390566e-208,-3.832060960175984e-208,-3.8030301964302143e-208,-3.77443598550625e-208,-3.746268553833819e-208,-3.718518417429907e-208,-3.6911763712521655e-208,-3.6642334790185974e-208,-3.637681063469862e-208,-3.6115106970519154e-208,-3.5857141929979613e-208,-3.560283596789902e-208,-3.5352111779805616e-208,-3.5104894223590417e-208,-3.4861110244425173e-208,-3.462068880278718e-208,-3.438356080544194e-208,-3.4149659039242926e-208,-3.3918918107615066e-208,-3.3691274369595984e-208,-3.3466665881315573e-208,-3.3245032339800905e-208,-3.3026315028999326e-208,-3.281045676791834e-208,-3.2597401860785986e-208,-3.2387096049140495e-208,-3.2179486465762673e-208,-3.1974521590368795e-208,-3.1772151206986077e-208,-3.157232636293661e-208,-3.1374999329359393e-208,-3.1180123563203596e-208,-3.0987653670629493e-208,-3.0797545371756573e-208,-3.0609755466701383e-208,-3.0424241802850332e-208,-3.024096324331544e-208,-3.005987963652337e-208,-2.98809517868906e-208,-2.9704141426539696e-208,-2.952941118801385e-208,-2.9356724577948783e-208,-2.918604595166307e-208,-2.9017340488629767e-208,-2.8850574168793775e-208,-2.8685713749701234e-208,-2.8522726744408582e-208,-2.8361581400140456e-208,-2.820224667766697e-208,-2.8044692231372315e-208,-2.7888888389987665e-208,-2.7734806137962833e-208,-2.7582417097452006e-208,-2.7431693510890154e-208,-2.7282608224137533e-208,-2.7135134670170936e-208,-2.698924685330097e-208,-2.6844919333895745e-208,-2.6702127213592132e-208,-2.6560846120976465e-208,-2.6421052197717457e-208,-2.6282722085134735e-208,-2.614583291118707e-208,-2.6010362277865185e-208,-2.587628824897439e-208,-2.5743589338293235e-208,-2.561224449809455e-208,-2.5482233108016187e-208,-2.5353534964268957e-208,-2.5226130269169975e-208,-2.5099999620990004e-208,-2.4975124004103865e-208,-2.4851484779433395e-208,-2.4729063675172906e-208,-2.4607842777787394e-208,-2.4487804523274247e-208,-2.436893168867943e-208,-2.425120738385961e-208,-2.4134615043481884e-208,-2.4019138419253227e-208,-2.3904761572371887e-208,-2.379146886619349e-208,-2.367924495910467e-208,-2.3568074797597483e-208,-2.3457943609537956e-208,-2.33488368976225e-208,-2.324074043301612e-208,-2.3133640249166475e-208,-2.3027522635788237e-208,-2.2922374133012244e-208,-2.2818181525694216e-208,-2.2714931837878014e-208,-2.261261232740849e-208,-2.2511210480689338e-208,-2.2410714007581317e-208,-2.2311110836436547e-208,-2.221238910926463e-208,-2.2114537177026534e-208,-2.2017543595052328e-208,-2.192139711857898e-208,-2.182608669840454e-208,-2.173160147665524e-208,-2.1637930782662015e-208,-2.1545064128943253e-208,-2.1452991207290528e-208,-2.1361701884954283e-208,-2.1271186200926463e-208,-2.1181434362317296e-208,-2.1092436740823393e-208,-2.1004183869284506e-208,-2.091666643832639e-208,-2.0829875293087243e-208,-2.0743801430025273e-208,-2.0658435993805146e-208,-2.0573770274260955e-208,-2.048979570343357e-208,-2.0406503852680287e-208,-2.0323886429854614e-208,-2.0241935276554375e-208,-2.0160642365436046e-208,-2.00799997975936e-208,-1.99999998e-208,-1.9920634723009578e-208,-1.984189703791967e-208,-1.976377933458987e-208,-1.9686274319117264e-208,-1.9609374811566166e-208,-1.9533073743750855e-208,-1.945736415706989e-208,-1.9382239200390575e-208,-1.9307692127982252e-208,-1.9233716297497104e-208,-1.9160305167997206e-208,-1.9087452298026575e-208,-1.9015151343727046e-208,-1.8943396056996799e-208,-1.8872180283690431e-208,-1.8801497961859477e-208,-1.8731343120032303e-208,-1.8661709875532403e-208,-1.8592592432834023e-208,-1.8523985081954225e-208,-1.845588219688041e-208,-1.8388278234032393e-208,-1.8321167730758168e-208,-1.8254545303862484e-208,-1.8188405648167406e-208,-1.8122743535104067e-208,-1.8057553811334816e-208,-1.7992831397404967e-208,-1.7928571286423468e-208,-1.7864768542771747e-208,-1.7801418300839998e-208,-1.7738515763790282e-208,-1.7676056202345766e-208,-1.7614034953605416e-208,-1.7552447419883613e-208,-1.7491289067573966e-208,-1.7430555426036844e-208,-1.737024208650998e-208,-1.7310344701041617e-208,-1.7250858981445661e-208,-1.719178069827829e-208,-1.7133105679835526e-208,-1.7074829811171271e-208,-1.7016949033135306e-208,-1.695945934143079e-208,-1.6902356785690802e-208,-1.6845637468573488e-208,-1.6789297544875337e-208,-1.6733333220662223e-208,-1.6677740752417744e-208,-1.66225164462085e-208,-1.6567656656865886e-208,-1.651315778718404e-208,-1.6459016287133568e-208,-1.6405228653090692e-208,-1.6351791427081457e-208,-1.6298701196040649e-208,-1.6245954591085138e-208,-1.619354828680125e-208,-1.6141479000545902e-208,-1.6089743491761178e-208,-1.6038338561302046e-208,-1.5987261050776909e-208,-1.5936507841900732e-208,-1.5886075855860441e-208,-1.5835962052692336e-208,-1.5786163430671257e-208,-1.5736677025711226e-208,-1.5687499910777346e-208,-1.5638629195308666e-208,-1.5590062024651828e-208,-1.554179557950522e-208,-1.549382707537342e-208,-1.5446153762031718e-208,-1.539877292300049e-208,-1.5351681875029224e-208,-1.5304877967589976e-208,-1.5258358582380058e-208,-1.5212121132833792e-208,-1.5166163063643084e-208,-1.5120481850286688e-208,-1.5075074998567936e-208,-1.502994004416078e-208,-1.4985074552163957e-208,-1.4940476116663124e-208,-1.4896142360300787e-208,-1.4852070933853856e-208,-1.4808259515818692e-208,-1.4764705812003461e-208,-1.4721407555127666e-208,-1.4678362504428714e-208,-1.4635568445275353e-208,-1.459302318878786e-208,-1.455072457146482e-208,-1.4508670454816398e-208,-1.4466858725003944e-208,-1.4425287292485799e-208,-1.43839540916692e-208,-1.4342857080568164e-208,-1.4301994240467204e-208,-1.426136357559078e-208,-1.4220963112778372e-208,-1.4180790901165055e-208,-1.4140845011867488e-208,-1.4101123537675169e-208,-1.4061624592746903e-208,-1.4022346312312351e-208,-1.3983286852378551e-208,-1.3944444389441359e-208,-1.3905817120201658e-208,-1.3867403261286286e-208,-1.3829201048973583e-208,-1.379120873892344e-208,-1.3753424605911804e-208,-1.371584694356953e-208,-1.3678474064125506e-208,-1.3641304298153947e-208,-1.3604335994325837e-208,-1.3567567519164355e-208,-1.3530997256804297e-208,-1.3494623608755348e-208,-1.3458444993669186e-208,-1.34224598471103e-208,-1.338666662133049e-208,-1.335106378504697e-208,-1.331564982322397e-208,-1.328042323685787e-208,-1.3245382542765644e-208,-1.3210526273376732e-208,-1.317585297652813e-208,-1.314136121526274e-208,-1.3107049567630839e-208,-1.3072916626494683e-208,-1.3038960999336144e-208,-1.300518130806733e-208,-1.2971576188844153e-208,-1.2938144291882772e-208,-1.290488428127887e-208,-1.2871794834829718e-208,-1.2838874643858948e-208,-1.2806122413044044e-208,-1.2773536860246424e-208,-1.2741116716344147e-208,-1.2708860725067136e-208,-1.2676767642834915e-208,-1.264483623859678e-208,-1.2613065293674402e-208,-1.2581453601606774e-208,-1.25499999679975e-208,-1.2518703210364363e-208,-1.248756215799114e-208,-1.2456575651781613e-208,-1.2425742544115774e-208,-1.2395061698708123e-208,-1.2364531990468102e-208,-1.2334152305362544e-208,-1.230392154028018e-208,-1.2273838602898118e-208,-1.2243902411550268e-208,-1.221411189509771e-208,-1.2184465992800925e-208,-1.2154963654193905e-208,-1.212560383896007e-208,-1.2096385516809988e-208,-1.2067307667360855e-208,-1.2038369280017714e-208,-1.2009569353856369e-208,-1.198090689750799e-208,-1.1952380929045352e-208,-1.1923990475870708e-208,-1.1895734574605244e-208,-1.186761227098011e-208,-1.1839622619728996e-208,-1.1811764684482216e-208,-1.1784037537662282e-208,-1.175644026038096e-208,-1.1728971942337758e-208,-1.1701631681719833e-208,-1.16744185851033e-208,-1.1647331767355904e-208,-1.1620370351541067e-208,-1.1593533468823236e-208,-1.1566820258374567e-208,-1.1540229867282864e-208,-1.151376145046082e-208,-1.1487414170556478e-208,-1.1461187197864932e-208,-1.143507971024123e-208,-1.1409090893014463e-208,-1.1383219938903028e-208,-1.1357466047931041e-208,-1.1331828427345871e-208,-1.1306306291536808e-208,-1.1280898861954804e-208,-1.125560536703332e-208,-1.1230425042110215e-208,-1.1205357129350686e-208,-1.1180400877671242e-208,-1.1155555542664692e-208,-1.1130820386526123e-208,-1.1106194677979874e-208,-1.1081677692207456e-208,-1.1057268710776457e-208,-1.1032967021570342e-208,-1.100877191871922e-208,-1.0984682702531494e-208,-1.0960698679426404e-208,-1.0936819161867468e-208,-1.0913043468296786e-208,-1.088937092307019e-208,-1.0865800856393246e-208,-1.084233260425808e-208,-1.081896550838102e-208,-1.0795698916141057e-208,-1.0772532180519074e-208,-1.0749464660037874e-208,-1.0726495718702974e-208,-1.0703624725944146e-208,-1.0680851056557719e-208,-1.065817409064961e-208,-1.0635593213579073e-208,-1.061310781590317e-208,-1.059071729332194e-208,-1.0568421046624266e-208,-1.0546218481634418e-208,-1.0524109009159271e-208,-1.0502092044936188e-208,-1.0480167009581548e-208,-1.045833332853993e-208,-1.043659043203392e-208,-1.0414937755014549e-208,-1.0393374737112336e-208,-1.0371900822588962e-208,-1.035051546028951e-208,-1.032921810359532e-208,-1.030800821037741e-208,-1.0286885242950484e-208,-1.0265848668027484e-208,-1.0244897956674718e-208,-1.0224032584267528e-208,-1.0203252030446493e-208,-1.0182555779074177e-208,-1.0161943318192398e-208,-1.0141414139980003e-208,-1.0120967740711173e-208,-1.0100603620714225e-208,-1.0080321284330898e-208,-1.0060120239876146e-208,-1.00399999995984e-208,-1.001996007964032e-208,-1.0e-208],"x":[-1.0e200,-1.9920418525896414e205,-3.9840737051792828e205,-5.9761055577689245e205,-7.9681374103585654e205,-9.960169262948207e205,-1.1952201115537848e206,-1.3944232968127489e206,-1.5936264820717132e206,-1.792829667330677e206,-1.9920328525896414e206,-2.1912360378486056e206,-2.3904392231075695e206,-2.5896424083665338e206,-2.788845593625498e206,-2.988048778884462e206,-3.1872519641434262e206,-3.3864551494023905e206,-3.5856583346613544e206,-3.784861519920318e206,-3.984064705179283e206,-4.183267890438247e206,-4.382471075697211e206,-4.5816742609561754e206,-4.780877446215139e206,-4.980080631474103e206,-5.179283816733068e206,-5.378487001992032e206,-5.577690187250996e206,-5.77689337250996e206,-5.976096557768924e206,-6.175299743027888e206,-6.374502928286853e206,-6.573706113545817e206,-6.77290929880478e206,-6.972112484063744e206,-7.171315669322708e206,-7.370518854581674e206,-7.569722039840638e206,-7.768925225099602e206,-7.968128410358565e206,-8.16733159561753e206,-8.366534780876493e206,-8.565737966135459e206,-8.764941151394423e206,-8.964144336653386e206,-9.16334752191235e206,-9.362550707171314e206,-9.561753892430278e206,-9.760957077689244e206,-9.960160262948207e206,-1.0159363448207171e207,-1.0358566633466135e207,-1.0557769818725099e207,-1.0756973003984063e207,-1.0956176189243027e207,-1.1155379374501992e207,-1.1354582559760956e207,-1.155378574501992e207,-1.1752988930278884e207,-1.1952192115537848e207,-1.2151395300796812e207,-1.2350598486055777e207,-1.2549801671314741e207,-1.2749004856573705e207,-1.294820804183267e207,-1.3147411227091633e207,-1.3346614412350597e207,-1.354581759760956e207,-1.3745020782868525e207,-1.3944223968127489e207,-1.4143427153386455e207,-1.434263033864542e207,-1.4541833523904383e207,-1.4741036709163347e207,-1.494023989442231e207,-1.5139443079681275e207,-1.533864626494024e207,-1.5537849450199203e207,-1.5737052635458167e207,-1.593625582071713e207,-1.6135459005976094e207,-1.6334662191235058e207,-1.6533865376494022e207,-1.673306856175299e207,-1.6932271747011953e207,-1.7131474932270917e207,-1.733067811752988e207,-1.7529881302788845e207,-1.7729084488047809e207,-1.7928287673306772e207,-1.8127490858565736e207,-1.83266940438247e207,-1.8525897229083664e207,-1.8725100414342628e207,-1.8924303599601592e207,-1.912350678486056e207,-1.9322709970119523e207,-1.9521913155378487e207,-1.972111634063745e207,-1.9920319525896414e207,-2.0119522711155378e207,-2.0318725896414342e207,-2.0517929081673306e207,-2.071713226693227e207,-2.0916335452191234e207,-2.1115538637450198e207,-2.1314741822709162e207,-2.1513945007968126e207,-2.1713148193227092e207,-2.1912351378486056e207,-2.211155456374502e207,-2.2310757749003984e207,-2.2509960934262948e207,-2.2709164119521912e207,-2.2908367304780876e207,-2.310757049003984e207,-2.3306773675298804e207,-2.3505976860557768e207,-2.3705180045816732e207,-2.3904383231075696e207,-2.4103586416334662e207,-2.4302789601593626e207,-2.450199278685259e207,-2.4701195972111554e207,-2.4900399157370518e207,-2.5099602342629482e207,-2.5298805527888446e207,-2.549800871314741e207,-2.5697211898406374e207,-2.589641508366534e207,-2.60956182689243e207,-2.6294821454183265e207,-2.649402463944223e207,-2.6693227824701193e207,-2.6892431009960157e207,-2.709163419521912e207,-2.7290837380478085e207,-2.749004056573705e207,-2.768924375099601e207,-2.788844693625498e207,-2.8087650121513946e207,-2.828685330677291e207,-2.8486056492031874e207,-2.868525967729084e207,-2.88844628625498e207,-2.9083666047808766e207,-2.928286923306773e207,-2.9482072418326694e207,-2.968127560358566e207,-2.988047878884462e207,-3.0079681974103585e207,-3.027888515936255e207,-3.0478088344621513e207,-3.0677291529880477e207,-3.087649471513944e207,-3.1075697900398405e207,-3.127490108565737e207,-3.147410427091633e207,-3.1673307456175297e207,-3.187251064143426e207,-3.2071713826693224e207,-3.227091701195219e207,-3.247012019721115e207,-3.2669323382470116e207,-3.2868526567729086e207,-3.306772975298805e207,-3.3266932938247014e207,-3.346613612350598e207,-3.366533930876494e207,-3.3864542494023905e207,-3.406374567928287e207,-3.4262948864541833e207,-3.4462152049800797e207,-3.466135523505976e207,-3.4860558420318725e207,-3.505976160557769e207,-3.525896479083665e207,-3.5458167976095617e207,-3.565737116135458e207,-3.5856574346613544e207,-3.605577753187251e207,-3.625498071713147e207,-3.6454183902390436e207,-3.66533870876494e207,-3.6852590272908364e207,-3.705179345816733e207,-3.725099664342629e207,-3.7450199828685256e207,-3.764940301394422e207,-3.784860619920319e207,-3.8047809384462153e207,-3.8247012569721117e207,-3.844621575498008e207,-3.8645418940239045e207,-3.884462212549801e207,-3.904382531075697e207,-3.9243028496015937e207,-3.94422316812749e207,-3.9641434866533865e207,-3.984063805179283e207,-4.003984123705179e207,-4.0239044422310756e207,-4.043824760756972e207,-4.0637450792828684e207,-4.083665397808765e207,-4.103585716334661e207,-4.1235060348605576e207,-4.143426353386454e207,-4.1633466719123504e207,-4.183266990438247e207,-4.203187308964143e207,-4.2231076274900395e207,-4.243027946015936e207,-4.2629482645418323e207,-4.282868583067729e207,-4.3027889015936257e207,-4.322709220119522e207,-4.3426295386454185e207,-4.362549857171315e207,-4.382470175697211e207,-4.4023904942231076e207,-4.422310812749004e207,-4.4422311312749004e207,-4.462151449800797e207,-4.482071768326693e207,-4.5019920868525896e207,-4.521912405378486e207,-4.5418327239043824e207,-4.561753042430279e207,-4.581673360956175e207,-4.6015936794820715e207,-4.621513998007968e207,-4.6414343165338643e207,-4.6613546350597607e207,-4.681274953585657e207,-4.7011952721115535e207,-4.72111559063745e207,-4.741035909163346e207,-4.7609562276892427e207,-4.7808765462151396e207,-4.800796864741036e207,-4.8207171832669324e207,-4.840637501792829e207,-4.860557820318725e207,-4.8804781388446216e207,-4.900398457370518e207,-4.9203187758964144e207,-4.940239094422311e207,-4.960159412948207e207,-4.9800797314741035e207,-5.00000005e207,-5.0199203685258963e207,-5.0398406870517927e207,-5.059761005577689e207,-5.0796813241035855e207,-5.099601642629482e207,-5.119521961155378e207,-5.139442279681275e207,-5.159362598207171e207,-5.179282916733067e207,-5.199203235258964e207,-5.21912355378486e207,-5.239043872310757e207,-5.258964190836653e207,-5.278884509362549e207,-5.298804827888446e207,-5.318725146414342e207,-5.338645464940239e207,-5.358565783466135e207,-5.378486101992031e207,-5.398406420517928e207,-5.418326739043824e207,-5.43824705756972e207,-5.458167376095617e207,-5.478087694621513e207,-5.49800801314741e207,-5.517928331673307e207,-5.537848650199204e207,-5.5577689687251e207,-5.577689287250996e207,-5.597609605776893e207,-5.617529924302789e207,-5.637450242828686e207,-5.657370561354582e207,-5.677290879880478e207,-5.697211198406375e207,-5.717131516932271e207,-5.737051835458168e207,-5.756972153984064e207,-5.77689247250996e207,-5.796812791035857e207,-5.816733109561753e207,-5.83665342808765e207,-5.856573746613546e207,-5.876494065139442e207,-5.896414383665339e207,-5.916334702191235e207,-5.936255020717131e207,-5.956175339243028e207,-5.976095657768924e207,-5.996015976294821e207,-6.015936294820717e207,-6.035856613346613e207,-6.05577693187251e207,-6.075697250398406e207,-6.095617568924303e207,-6.115537887450199e207,-6.135458205976095e207,-6.155378524501992e207,-6.175298843027888e207,-6.195219161553785e207,-6.215139480079681e207,-6.235059798605577e207,-6.254980117131474e207,-6.27490043565737e207,-6.294820754183266e207,-6.314741072709163e207,-6.334661391235059e207,-6.354581709760956e207,-6.374502028286852e207,-6.394422346812748e207,-6.414342665338645e207,-6.434262983864541e207,-6.454183302390438e207,-6.474103620916334e207,-6.49402393944223e207,-6.513944257968128e207,-6.533864576494024e207,-6.553784895019921e207,-6.573705213545817e207,-6.593625532071714e207,-6.61354585059761e207,-6.633466169123506e207,-6.653386487649403e207,-6.673306806175299e207,-6.693227124701195e207,-6.713147443227092e207,-6.733067761752988e207,-6.752988080278885e207,-6.772908398804781e207,-6.792828717330677e207,-6.812749035856574e207,-6.83266935438247e207,-6.852589672908367e207,-6.872509991434263e207,-6.892430309960159e207,-6.912350628486056e207,-6.932270947011952e207,-6.952191265537849e207,-6.972111584063745e207,-6.992031902589641e207,-7.011952221115538e207,-7.031872539641434e207,-7.05179285816733e207,-7.071713176693227e207,-7.091633495219123e207,-7.11155381374502e207,-7.131474132270916e207,-7.151394450796812e207,-7.171314769322709e207,-7.191235087848605e207,-7.211155406374502e207,-7.231075724900398e207,-7.250996043426294e207,-7.270916361952191e207,-7.290836680478087e207,-7.310756999003984e207,-7.33067731752988e207,-7.350597636055776e207,-7.370517954581673e207,-7.390438273107569e207,-7.410358591633466e207,-7.430278910159362e207,-7.450199228685258e207,-7.470119547211155e207,-7.490039865737051e207,-7.509960184262949e207,-7.529880502788845e207,-7.549800821314741e207,-7.569721139840638e207,-7.589641458366534e207,-7.609561776892431e207,-7.629482095418327e207,-7.649402413944223e207,-7.66932273247012e207,-7.689243050996016e207,-7.709163369521913e207,-7.729083688047809e207,-7.749004006573705e207,-7.768924325099602e207,-7.788844643625498e207,-7.808764962151395e207,-7.828685280677291e207,-7.848605599203187e207,-7.868525917729084e207,-7.88844623625498e207,-7.908366554780876e207,-7.928286873306773e207,-7.948207191832669e207,-7.968127510358566e207,-7.988047828884462e207,-8.007968147410358e207,-8.027888465936255e207,-8.047808784462151e207,-8.067729102988048e207,-8.087649421513944e207,-8.10756974003984e207,-8.127490058565737e207,-8.147410377091633e207,-8.16733069561753e207,-8.187251014143426e207,-8.207171332669322e207,-8.227091651195219e207,-8.247011969721115e207,-8.266932288247012e207,-8.286852606772908e207,-8.306772925298804e207,-8.326693243824701e207,-8.346613562350597e207,-8.366533880876493e207,-8.38645419940239e207,-8.406374517928286e207,-8.426294836454183e207,-8.446215154980079e207,-8.466135473505975e207,-8.486055792031872e207,-8.505976110557769e207,-8.525896429083666e207,-8.545816747609562e207,-8.565737066135459e207,-8.585657384661355e207,-8.605577703187251e207,-8.625498021713148e207,-8.645418340239044e207,-8.66533865876494e207,-8.685258977290837e207,-8.705179295816733e207,-8.72509961434263e207,-8.745019932868526e207,-8.764940251394422e207,-8.784860569920319e207,-8.804780888446215e207,-8.824701206972112e207,-8.844621525498008e207,-8.864541844023904e207,-8.884462162549801e207,-8.904382481075697e207,-8.924302799601594e207,-8.94422311812749e207,-8.964143436653386e207,-8.984063755179283e207,-9.003984073705179e207,-9.023904392231076e207,-9.043824710756972e207,-9.063745029282868e207,-9.083665347808765e207,-9.103585666334661e207,-9.123505984860557e207,-9.143426303386454e207,-9.16334662191235e207,-9.183266940438247e207,-9.203187258964143e207,-9.223107577490039e207,-9.243027896015936e207,-9.262948214541832e207,-9.282868533067729e207,-9.302788851593625e207,-9.322709170119521e207,-9.342629488645418e207,-9.362549807171314e207,-9.38247012569721e207,-9.402390444223107e207,-9.422310762749003e207,-9.4422310812749e207,-9.462151399800796e207,-9.482071718326693e207,-9.50199203685259e207,-9.521912355378486e207,-9.541832673904383e207,-9.561752992430279e207,-9.581673310956176e207,-9.601593629482072e207,-9.621513948007968e207,-9.641434266533865e207,-9.661354585059761e207,-9.681274903585658e207,-9.701195222111554e207,-9.72111554063745e207,-9.741035859163347e207,-9.760956177689243e207,-9.78087649621514e207,-9.800796814741036e207,-9.820717133266932e207,-9.840637451792829e207,-9.860557770318725e207,-9.880478088844621e207,-9.900398407370518e207,-9.920318725896414e207,-9.940239044422311e207,-9.960159362948207e207,-9.980079681474103e207,-1.0e208]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_positive.json new file mode 100644 index 000000000000..d408d2259c5a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_positive.json @@ -0,0 +1 @@ +{"expected":[1.0e-300,5.0199748499260014e-306,2.5099937250156875e-306,1.6733305500268516e-306,1.2549984375269454e-306,1.003999002024992e-306,8.366659750227939e-307,7.171423500207668e-307,6.2749961251898935e-307,5.5777747223967356e-307,5.0199975301612154e-307,4.563634326595951e-307,4.183331625139586e-307,3.861537009006463e-307,3.585713035837171e-307,3.346665580115908e-307,3.1374990469846647e-307,2.952940334014081e-307,2.788888138987856e-307,2.642104591507096e-307,2.5099993950901456e-307,2.3904756429434363e-307,2.2818176839670507e-307,2.1826082411002836e-307,2.0916662500764718e-307,2.007999616873673e-307,1.9307688772900056e-307,1.85925893216741e-307,1.7928568393520923e-307,1.7310342004209736e-307,1.6733330700622637e-307,1.6193545926722538e-307,1.5687497695898777e-307,1.5212119050156414e-307,1.4764703850034881e-307,1.4342855229110458e-307,1.3944442639413815e-307,1.356756586245456e-307,1.3210524702714877e-307,1.287179334368197e-307,1.2549998550475168e-307,1.22439010623321e-307,1.1952379643310803e-307,1.1674417358474985e-307,1.1409089721508388e-307,1.1155554422647027e-307,1.0913042396446232e-307,1.0680850029832604e-307,1.04583323441494e-307,1.0244897012053398e-307,1.0039999092384082e-307,9.8431363844599e-308,9.653845318417233e-308,9.471697310793945e-308,9.296295525048074e-308,9.12727198547444e-308,8.964285000344444e-308,8.807016856294298e-308,8.655171751224784e-308,8.508473937414583e-308,8.366666050322267e-308,8.229507601768385e-308,8.096773618938646e-308,7.968253413005834e-308,7.843749463193397e-308,7.723076403848555e-308,7.606060103599666e-308,7.492536826977087e-308,7.382352470008681e-308,7.275361862285263e-308,7.171428128849006e-308,7.070422106006771e-308,6.972221805825643e-308,6.876711924642545e-308,6.78378339142442e-308,6.693332952259577e-308,6.605262787652375e-308,6.519480159639082e-308,6.435897086048671e-308,6.354430039503302e-308,6.274999668993767e-308,6.197530542078968e-308,6.121950905948856e-308,6.048192465759922e-308,5.97619017880387e-308,5.90588206320555e-308,5.837209019967564e-308,5.770114667287633e-308,5.704545186172533e-308,5.640449176460055e-308,5.577777522439517e-308,5.516483267332459e-308,5.456521495959369e-308,5.397849224976308e-308,5.340425300117711e-308,5.284210299929095e-308,5.229166445516502e-308,5.175257515878424e-308,5.1224487684215e-308,5.070706864293448e-308,5.019999798196008e-308,4.970296832367423e-308,4.921568434448296e-308,4.873786218966922e-308,4.826922892200451e-308,4.780952200186855e-308,4.735848879679608e-308,4.69158861185257e-308,4.648147978576823e-308,4.60550442110429e-308,4.563636201004964e-308,4.522522363215654e-308,4.482142701068245e-308,4.4424777231748815e-308,4.4035086220560225e-308,4.365217244405298e-308,4.327586062892395e-308,4.2905981494119407e-308,4.254237149692621e-308,4.218487259186502e-308,4.183333200163893e-308,4.1487601999439974e-308,4.114753970196188e-308,4.081300687250978e-308,4.0483869733636873e-308,4.0159998788774436e-308,3.984126865235579e-308,3.952755788796581e-308,3.9218748854077183e-308,3.891472755696175e-308,3.861538351039056e-308,3.832060960175983e-308,3.8030301964302143e-308,3.77443598550625e-308,3.746268553833819e-308,3.7185184174299063e-308,3.6911763712521654e-308,3.664233479018597e-308,3.637681063469862e-308,3.6115106970519153e-308,3.585714192997961e-308,3.560283596789902e-308,3.5352111779805616e-308,3.5104894223590417e-308,3.486111024442518e-308,3.462068880278718e-308,3.4383560805441937e-308,3.414965903924293e-308,3.391891810761507e-308,3.3691274369595983e-308,3.3466665881315576e-308,3.3245032339800904e-308,3.3026315028999325e-308,3.2810456767918336e-308,3.2597401860785983e-308,3.23870960491405e-308,3.217948646576267e-308,3.197452159036879e-308,3.1772151206986073e-308,3.1572326362936607e-308,3.137499932935939e-308,3.1180123563203597e-308,3.098765367062949e-308,3.079754537175657e-308,3.060975546670138e-308,3.0424241802850334e-308,3.0240963243315443e-308,3.0059879636523373e-308,2.9880951786890605e-308,2.97041414265397e-308,2.9529411188013853e-308,2.9356724577948783e-308,2.9186045951663073e-308,2.901734048862977e-308,2.8850574168793774e-308,2.8685713749701233e-308,2.852272674440858e-308,2.8361581400140456e-308,2.8202246677666973e-308,2.804469223137231e-308,2.788888838998766e-308,2.773480613796283e-308,2.7582417097452005e-308,2.743169351089015e-308,2.7282608224137534e-308,2.713513467017094e-308,2.6989246853300965e-308,2.684491933389574e-308,2.670212721359213e-308,2.6560846120976464e-308,2.642105219771746e-308,2.6282722085134736e-308,2.614583291118707e-308,2.6010362277865185e-308,2.587628824897439e-308,2.5743589338293234e-308,2.561224449809455e-308,2.5482233108016185e-308,2.5353534964268957e-308,2.5226130269169975e-308,2.5099999620990007e-308,2.4975124004103863e-308,2.4851484779433393e-308,2.4729063675172905e-308,2.4607842777787393e-308,2.448780452327425e-308,2.4368931688679427e-308,2.425120738385961e-308,2.4134615043481885e-308,2.4019138419253227e-308,2.3904761572371884e-308,2.3791468866193485e-308,2.367924495910467e-308,2.356807479759748e-308,2.345794360953795e-308,2.33488368976225e-308,2.324074043301612e-308,2.3133640249166474e-308,2.302752263578824e-308,2.2922374133012245e-308,2.2818181525694215e-308,2.2714931837878016e-308,2.261261232740849e-308,2.251121048068934e-308,2.2410714007581317e-308,2.231111083643655e-308,2.221238910926463e-308,2.211453717702653e-308,2.201754359505233e-308,2.1921397118578976e-308,2.182608669840454e-308,2.173160147665524e-308,2.1637930782662015e-308,2.1545064128943254e-308,2.1452991207290524e-308,2.136170188495428e-308,2.1271186200926457e-308,2.1181434362317293e-308,2.109243674082339e-308,2.1004183869284505e-308,2.091666643832639e-308,2.082987529308724e-308,2.0743801430025275e-308,2.065843599380515e-308,2.0573770274260954e-308,2.0489795703433574e-308,2.0406503852680285e-308,2.032388642985461e-308,2.024193527655437e-308,2.0160642365436043e-308,2.00799997975936e-308,1.99999998e-308,1.9920634723009577e-308,1.984189703791967e-308,1.976377933458987e-308,1.9686274319117267e-308,1.9609374811566163e-308,1.953307374375085e-308,1.945736415706989e-308,1.938223920039057e-308,1.9307692127982247e-308,1.92337162974971e-308,1.9160305167997205e-308,1.9087452298026575e-308,1.9015151343727044e-308,1.89433960569968e-308,1.887218028369043e-308,1.8801497961859476e-308,1.87313431200323e-308,1.86617098755324e-308,1.859259243283402e-308,1.852398508195422e-308,1.845588219688041e-308,1.838827823403239e-308,1.832116773075817e-308,1.825454530386248e-308,1.8188405648167404e-308,1.812274353510407e-308,1.8057553811334817e-308,1.799283139740497e-308,1.792857128642347e-308,1.786476854277175e-308,1.7801418300839997e-308,1.773851576379028e-308,1.767605620234577e-308,1.761403495360542e-308,1.7552447419883614e-308,1.7491289067573967e-308,1.7430555426036845e-308,1.737024208650998e-308,1.731034470104162e-308,1.725085898144566e-308,1.7191780698278286e-308,1.7133105679835524e-308,1.707482981117127e-308,1.7016949033135307e-308,1.695945934143079e-308,1.69023567856908e-308,1.684563746857349e-308,1.6789297544875336e-308,1.6733333220662223e-308,1.6677740752417747e-308,1.66225164462085e-308,1.6567656656865886e-308,1.6513157787184035e-308,1.6459016287133565e-308,1.640522865309069e-308,1.6351791427081456e-308,1.629870119604065e-308,1.624595459108514e-308,1.6193548286801248e-308,1.6141479000545904e-308,1.6089743491761176e-308,1.6038338561302044e-308,1.5987261050776905e-308,1.593650784190073e-308,1.588607585586044e-308,1.583596205269233e-308,1.5786163430671255e-308,1.5736677025711226e-308,1.5687499910777345e-308,1.563862919530866e-308,1.5590062024651827e-308,1.554179557950522e-308,1.549382707537342e-308,1.544615376203172e-308,1.539877292300049e-308,1.5351681875029223e-308,1.530487796758998e-308,1.525835858238006e-308,1.521212113283379e-308,1.5166163063643086e-308,1.512048185028669e-308,1.507507499856794e-308,1.502994004416078e-308,1.498507455216396e-308,1.4940476116663124e-308,1.4896142360300783e-308,1.485207093385386e-308,1.4808259515818693e-308,1.476470581200346e-308,1.4721407555127665e-308,1.4678362504428715e-308,1.463556844527535e-308,1.459302318878786e-308,1.455072457146482e-308,1.4508670454816397e-308,1.4466858725003944e-308,1.4425287292485796e-308,1.43839540916692e-308,1.4342857080568163e-308,1.43019942404672e-308,1.426136357559078e-308,1.422096311277837e-308,1.4180790901165055e-308,1.4140845011867487e-308,1.4101123537675166e-308,1.40616245927469e-308,1.402234631231235e-308,1.3983286852378553e-308,1.3944444389441358e-308,1.3905817120201655e-308,1.3867403261286285e-308,1.3829201048973584e-308,1.379120873892344e-308,1.3753424605911806e-308,1.371584694356953e-308,1.3678474064125505e-308,1.3641304298153946e-308,1.3604335994325834e-308,1.3567567519164357e-308,1.3530997256804295e-308,1.349462360875535e-308,1.3458444993669186e-308,1.3422459847110297e-308,1.338666662133049e-308,1.3351063785046965e-308,1.331564982322397e-308,1.328042323685787e-308,1.3245382542765645e-308,1.321052627337673e-308,1.317585297652813e-308,1.314136121526274e-308,1.310704956763084e-308,1.307291662649468e-308,1.3038960999336143e-308,1.300518130806733e-308,1.297157618884415e-308,1.2938144291882773e-308,1.290488428127887e-308,1.287179483482972e-308,1.283887464385895e-308,1.2806122413044047e-308,1.2773536860246425e-308,1.274111671634415e-308,1.2708860725067137e-308,1.2676767642834913e-308,1.264483623859678e-308,1.26130652936744e-308,1.2581453601606775e-308,1.25499999679975e-308,1.2518703210364366e-308,1.248756215799114e-308,1.2456575651781613e-308,1.2425742544115773e-308,1.2395061698708126e-308,1.23645319904681e-308,1.2334152305362545e-308,1.230392154028018e-308,1.2273838602898116e-308,1.224390241155027e-308,1.221411189509771e-308,1.2184465992800926e-308,1.21549636541939e-308,1.212560383896007e-308,1.209638551680999e-308,1.2067307667360853e-308,1.203836928001771e-308,1.2009569353856366e-308,1.198090689750799e-308,1.195238092904535e-308,1.1923990475870706e-308,1.189573457460524e-308,1.186761227098011e-308,1.1839622619728997e-308,1.1811764684482214e-308,1.178403753766228e-308,1.175644026038096e-308,1.172897194233776e-308,1.1701631681719834e-308,1.16744185851033e-308,1.16473317673559e-308,1.1620370351541066e-308,1.1593533468823235e-308,1.1566820258374566e-308,1.1540229867282865e-308,1.151376145046082e-308,1.148741417055648e-308,1.1461187197864934e-308,1.143507971024123e-308,1.1409090893014463e-308,1.138321993890303e-308,1.1357466047931043e-308,1.133182842734587e-308,1.130630629153681e-308,1.12808988619548e-308,1.125560536703332e-308,1.1230425042110214e-308,1.1205357129350684e-308,1.1180400877671244e-308,1.115555554266469e-308,1.113082038652612e-308,1.110619467797987e-308,1.1081677692207457e-308,1.1057268710776455e-308,1.1032967021570343e-308,1.100877191871922e-308,1.0984682702531495e-308,1.0960698679426404e-308,1.093681916186747e-308,1.0913043468296788e-308,1.088937092307019e-308,1.086580085639325e-308,1.0842332604258076e-308,1.081896550838102e-308,1.0795698916141057e-308,1.0772532180519075e-308,1.074946466003787e-308,1.0726495718702973e-308,1.0703624725944145e-308,1.0680851056557716e-308,1.065817409064961e-308,1.063559321357907e-308,1.0613107815903167e-308,1.059071729332194e-308,1.056842104662427e-308,1.0546218481634417e-308,1.0524109009159273e-308,1.050209204493619e-308,1.048016700958155e-308,1.045833332853993e-308,1.043659043203392e-308,1.041493775501455e-308,1.0393374737112336e-308,1.0371900822588965e-308,1.035051546028951e-308,1.032921810359532e-308,1.030800821037741e-308,1.028688524295048e-308,1.0265848668027483e-308,1.024489795667472e-308,1.022403258426753e-308,1.020325203044649e-308,1.018255577907418e-308,1.0161943318192396e-308,1.014141413998e-308,1.0120967740711173e-308,1.0100603620714223e-308,1.0080321284330897e-308,1.0060120239876145e-308,1.00399999995984e-308,1.0019960079640323e-308,1.0e-308],"x":[1.0e300,1.9920418525896416e305,3.9840737051792825e305,5.9761055577689246e305,7.968137410358565e305,9.960169262948207e305,1.195220111553785e306,1.394423296812749e306,1.593626482071713e306,1.7928296673306772e306,1.9920328525896414e306,2.1912360378486056e306,2.39043922310757e306,2.5896424083665337e306,2.788845593625498e306,2.988048778884462e306,3.187251964143426e306,3.3864551494023906e306,3.5856583346613545e306,3.784861519920319e306,3.984064705179283e306,4.183267890438247e306,4.382471075697211e306,4.581674260956175e306,4.78087744621514e306,4.9800806314741036e306,5.1792838167330675e306,5.378487001992032e306,5.577690187250996e306,5.77689337250996e306,5.976096557768924e306,6.175299743027889e306,6.374502928286852e306,6.573706113545817e306,6.772909298804781e306,6.972112484063746e306,7.171315669322709e306,7.370518854581673e306,7.569722039840638e306,7.768925225099601e306,7.968128410358566e306,8.16733159561753e306,8.366534780876494e306,8.565737966135458e306,8.764941151394423e306,8.964144336653387e306,9.16334752191235e306,9.362550707171315e306,9.56175389243028e306,9.760957077689243e306,9.960160262948207e306,1.0159363448207172e307,1.0358566633466135e307,1.05577698187251e307,1.0756973003984064e307,1.0956176189243029e307,1.1155379374501992e307,1.1354582559760956e307,1.155378574501992e307,1.1752988930278885e307,1.1952192115537849e307,1.2151395300796812e307,1.2350598486055778e307,1.254980167131474e307,1.2749004856573704e307,1.294820804183267e307,1.3147411227091633e307,1.3346614412350597e307,1.3545817597609562e307,1.3745020782868526e307,1.3944223968127491e307,1.4143427153386455e307,1.4342630338645418e307,1.4541833523904384e307,1.4741036709163347e307,1.494023989442231e307,1.5139443079681276e307,1.533864626494024e307,1.5537849450199202e307,1.5737052635458168e307,1.5936255820717132e307,1.6135459005976095e307,1.633466219123506e307,1.6533865376494024e307,1.6733068561752987e307,1.6932271747011953e307,1.7131474932270916e307,1.7330678117529882e307,1.7529881302788845e307,1.7729084488047808e307,1.7928287673306774e307,1.8127490858565737e307,1.83266940438247e307,1.8525897229083667e307,1.872510041434263e307,1.8924303599601593e307,1.912350678486056e307,1.9322709970119522e307,1.9521913155378485e307,1.972111634063745e307,1.9920319525896414e307,2.0119522711155378e307,2.0318725896414343e307,2.0517929081673307e307,2.071713226693227e307,2.0916335452191236e307,2.11155386374502e307,2.1314741822709165e307,2.1513945007968128e307,2.1713148193227091e307,2.1912351378486057e307,2.211155456374502e307,2.2310757749003984e307,2.250996093426295e307,2.2709164119521913e307,2.2908367304780876e307,2.310757049003984e307,2.3306773675298807e307,2.350597686055777e307,2.3705180045816734e307,2.3904383231075697e307,2.410358641633466e307,2.4302789601593624e307,2.450199278685259e307,2.4701195972111555e307,2.490039915737052e307,2.509960234262948e307,2.5298805527888445e307,2.549800871314741e307,2.5697211898406377e307,2.589641508366534e307,2.6095618268924303e307,2.6294821454183267e307,2.649402463944223e307,2.6693227824701193e307,2.689243100996016e307,2.7091634195219125e307,2.729083738047809e307,2.749004056573705e307,2.7689243750996014e307,2.7888446936254983e307,2.8087650121513946e307,2.828685330677291e307,2.848605649203187e307,2.8685259677290836e307,2.88844628625498e307,2.9083666047808767e307,2.928286923306773e307,2.9482072418326694e307,2.9681275603585657e307,2.988047878884462e307,3.0079681974103584e307,3.027888515936255e307,3.0478088344621515e307,3.067729152988048e307,3.087649471513944e307,3.1075697900398405e307,3.1274901085657373e307,3.1474104270916337e307,3.16733074561753e307,3.1872510641434263e307,3.2071713826693226e307,3.227091701195219e307,3.247012019721116e307,3.266932338247012e307,3.2868526567729084e307,3.306772975298805e307,3.326693293824701e307,3.3466136123505974e307,3.366533930876494e307,3.3864542494023906e307,3.406374567928287e307,3.426294886454183e307,3.4462152049800796e307,3.4661355235059764e307,3.4860558420318727e307,3.505976160557769e307,3.5258964790836654e307,3.5458167976095617e307,3.565737116135458e307,3.585657434661355e307,3.605577753187251e307,3.6254980717131475e307,3.645418390239044e307,3.66533870876494e307,3.6852590272908365e307,3.7051793458167333e307,3.7250996643426296e307,3.745019982868526e307,3.7649403013944223e307,3.7848606199203186e307,3.804780938446215e307,3.824701256972112e307,3.844621575498008e307,3.8645418940239044e307,3.8844622125498007e307,3.904382531075697e307,3.924302849601594e307,3.94422316812749e307,3.9641434866533866e307,3.984063805179283e307,4.003984123705179e307,4.0239044422310755e307,4.0438247607569724e307,4.0637450792828687e307,4.083665397808765e307,4.1035857163346613e307,4.1235060348605577e307,4.143426353386454e307,4.163346671912351e307,4.183266990438247e307,4.2031873089641435e307,4.22310762749004e307,4.243027946015936e307,4.262948264541833e307,4.2828685830677293e307,4.3027889015936256e307,4.322709220119522e307,4.3426295386454183e307,4.3625498571713146e307,4.3824701756972114e307,4.4023904942231077e307,4.422310812749004e307,4.4422311312749004e307,4.4621514498007967e307,4.482071768326693e307,4.50199208685259e307,4.521912405378486e307,4.541832723904383e307,4.561753042430279e307,4.581673360956175e307,4.601593679482072e307,4.621513998007968e307,4.641434316533864e307,4.661354635059761e307,4.681274953585658e307,4.701195272111554e307,4.72111559063745e307,4.741035909163347e307,4.760956227689243e307,4.780876546215139e307,4.800796864741036e307,4.820717183266932e307,4.840637501792828e307,4.860557820318725e307,4.880478138844621e307,4.900398457370518e307,4.920318775896415e307,4.940239094422311e307,4.960159412948207e307,4.980079731474104e307,5.00000005e307,5.019920368525896e307,5.039840687051793e307,5.059761005577689e307,5.079681324103585e307,5.099601642629482e307,5.119521961155379e307,5.139442279681275e307,5.159362598207172e307,5.179282916733068e307,5.199203235258964e307,5.219123553784861e307,5.239043872310757e307,5.258964190836653e307,5.27888450936255e307,5.298804827888446e307,5.318725146414342e307,5.338645464940239e307,5.358565783466136e307,5.378486101992032e307,5.398406420517929e307,5.418326739043825e307,5.438247057569721e307,5.458167376095618e307,5.478087694621514e307,5.49800801314741e307,5.517928331673307e307,5.537848650199203e307,5.557768968725099e307,5.577689287250997e307,5.597609605776893e307,5.617529924302789e307,5.637450242828686e307,5.657370561354582e307,5.677290879880478e307,5.697211198406374e307,5.717131516932271e307,5.737051835458167e307,5.756972153984063e307,5.77689247250996e307,5.796812791035857e307,5.816733109561753e307,5.83665342808765e307,5.856573746613546e307,5.876494065139442e307,5.896414383665339e307,5.916334702191235e307,5.936255020717131e307,5.956175339243028e307,5.976095657768924e307,5.99601597629482e307,6.015936294820717e307,6.035856613346614e307,6.05577693187251e307,6.075697250398407e307,6.095617568924303e307,6.115537887450199e307,6.135458205976096e307,6.155378524501992e307,6.175298843027888e307,6.195219161553785e307,6.215139480079681e307,6.235059798605577e307,6.254980117131475e307,6.274900435657371e307,6.294820754183267e307,6.314741072709164e307,6.33466139123506e307,6.354581709760956e307,6.374502028286853e307,6.394422346812749e307,6.414342665338645e307,6.434262983864542e307,6.454183302390438e307,6.474103620916334e307,6.494023939442232e307,6.513944257968128e307,6.533864576494024e307,6.553784895019921e307,6.573705213545817e307,6.593625532071713e307,6.61354585059761e307,6.633466169123506e307,6.653386487649402e307,6.673306806175299e307,6.693227124701195e307,6.713147443227092e307,6.733067761752988e307,6.752988080278885e307,6.772908398804781e307,6.792828717330677e307,6.812749035856574e307,6.83266935438247e307,6.852589672908366e307,6.872509991434263e307,6.892430309960159e307,6.912350628486055e307,6.932270947011953e307,6.952191265537849e307,6.972111584063745e307,6.992031902589642e307,7.011952221115538e307,7.031872539641434e307,7.051792858167331e307,7.071713176693227e307,7.091633495219123e307,7.11155381374502e307,7.131474132270916e307,7.151394450796812e307,7.17131476932271e307,7.191235087848606e307,7.211155406374502e307,7.231075724900399e307,7.250996043426295e307,7.270916361952191e307,7.290836680478088e307,7.310756999003984e307,7.33067731752988e307,7.350597636055777e307,7.370517954581673e307,7.39043827310757e307,7.410358591633467e307,7.430278910159363e307,7.450199228685259e307,7.470119547211156e307,7.490039865737052e307,7.509960184262948e307,7.529880502788845e307,7.549800821314741e307,7.569721139840637e307,7.589641458366534e307,7.60956177689243e307,7.629482095418327e307,7.649402413944224e307,7.66932273247012e307,7.689243050996016e307,7.709163369521913e307,7.729083688047809e307,7.749004006573705e307,7.768924325099601e307,7.788844643625498e307,7.808764962151394e307,7.82868528067729e307,7.848605599203188e307,7.868525917729084e307,7.88844623625498e307,7.908366554780877e307,7.928286873306773e307,7.948207191832669e307,7.968127510358566e307,7.988047828884462e307,8.007968147410358e307,8.027888465936255e307,8.047808784462151e307,8.067729102988047e307,8.087649421513945e307,8.107569740039841e307,8.127490058565737e307,8.147410377091634e307,8.16733069561753e307,8.187251014143426e307,8.207171332669323e307,8.227091651195219e307,8.247011969721115e307,8.266932288247012e307,8.286852606772908e307,8.306772925298805e307,8.326693243824702e307,8.346613562350598e307,8.366533880876494e307,8.386454199402391e307,8.406374517928287e307,8.426294836454183e307,8.44621515498008e307,8.466135473505976e307,8.486055792031872e307,8.505976110557769e307,8.525896429083666e307,8.545816747609562e307,8.565737066135459e307,8.585657384661355e307,8.605577703187251e307,8.625498021713148e307,8.645418340239044e307,8.66533865876494e307,8.685258977290837e307,8.705179295816733e307,8.725099614342629e307,8.745019932868526e307,8.764940251394423e307,8.784860569920319e307,8.804780888446215e307,8.824701206972112e307,8.844621525498008e307,8.864541844023904e307,8.884462162549801e307,8.904382481075697e307,8.924302799601593e307,8.94422311812749e307,8.964143436653386e307,8.984063755179283e307,9.00398407370518e307,9.023904392231075e307,9.043824710756972e307,9.063745029282868e307,9.083665347808765e307,9.103585666334662e307,9.123505984860558e307,9.143426303386455e307,9.16334662191235e307,9.183266940438248e307,9.203187258964143e307,9.22310757749004e307,9.243027896015936e307,9.262948214541833e307,9.282868533067728e307,9.302788851593626e307,9.322709170119523e307,9.342629488645418e307,9.362549807171316e307,9.38247012569721e307,9.402390444223108e307,9.422310762749004e307,9.4422310812749e307,9.462151399800796e307,9.482071718326694e307,9.501992036852589e307,9.521912355378486e307,9.541832673904382e307,9.561752992430279e307,9.581673310956176e307,9.601593629482072e307,9.621513948007969e307,9.641434266533864e307,9.661354585059762e307,9.681274903585657e307,9.701195222111554e307,9.72111554063745e307,9.741035859163347e307,9.760956177689242e307,9.78087649621514e307,9.800796814741037e307,9.820717133266932e307,9.84063745179283e307,9.860557770318725e307,9.880478088844622e307,9.900398407370517e307,9.920318725896415e307,9.94023904442231e307,9.960159362948207e307,9.980079681474103e307,1.0e308]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_negative.json new file mode 100644 index 000000000000..aa5f5403dca4 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_negative.json @@ -0,0 +1 @@ +{"expected":[-0.32745015023725843,-0.32228220501757976,-0.317272386683515,-0.3124136500429473,-0.30769935672565835,-0.3031232466029938,-0.2986794115555974,-0.29436227136958615,-0.2901665515644846,-0.28608726297654286,-0.2821196829390524,-0.2782593379172548,-0.2745019874696298,-0.27084360941999,-0.2672803861360766,-0.26380869182040123,-0.2604250807280673,-0.2571262762343455,-0.2539091606819807,-0.2507707659446741,-0.2477082646489839,-0.2447189620021126,-0.2418002881777449,-0.23894979121633422,-0.23616513040005896,-0.233444070066118,-0.2307844738251565,-0.2281842991544351,-0.22564159233791684,-0.2231544837277625,-0.22072118330383614,-0.2183399765097308,-0.216009220345571,-0.21372733969942823,-0.21149282390063295,-0.20930422347958236,-0.2071601471198436,-0.2050592587894541,-0.20300027503931994,-0.20098196245753583,-0.1990031352692899,-0.19706265307278792,-0.19515941870233972,-0.19329237621039916,-0.19146050896094657,-0.18966283782715046,-0.18789841948675062,-0.1861663448090685,-0.1844657373279805,-0.18279575179558286,-0.18115557281164252,-0.17954441352426334,-0.1779615143975094,-0.17640614204201288,-0.1748775881048603,-0.17337516821529744,-0.17189822098302027,-0.17044610704603122,-0.16901820816523483,-0.16761392636313044,-0.16623268310412634,-0.16487391851415778,-0.1635370906374371,-0.16222167472829832,-0.16092716257622758,-0.15965306186228406,-0.15839889554523037,-0.15716420127578884,-0.15594853083753865,-0.15475144961305537,-0.1535725360739786,-0.1524113812937703,-0.15126758848199823,-0.15014077253904828,-0.14903055963022988,-0.1479365867783013,-0.14685850147349372,-0.1457959613001678,-0.1447486335792827,-0.1437161950259048,-0.1426983314210256,-0.14169473729699794,-0.1407051156359385,-0.13972917758047806,-0.13876664215627746,-0.13781723600575385,-0.13688069313249654,-0.13595675465587448,-0.13504516857536697,-0.1341456895441721,-0.13325807865167058,-0.13238210321434454,-0.13151753657477194,-0.13066415790833558,-0.1298217520373042,-0.12899010925196158,-0.12816902513847303,-0.12735830041319784,-0.1265577407631667,-0.12576715669246008,-0.12498636337423422,-0.1242151805081555,-0.12345343218301351,-0.12270094674429595,-0.12195755666651785,-0.1212230984301074,-0.12049741240266042,-0.11978034272438426,-0.11907173719755963,-0.11837144717985787,-0.11767932748135736,-0.11699523626511117,-0.11631903495112404,-0.11565058812360322,-0.11498976344135406,-0.11433643155119712,-0.11369046600428852,-0.11305174317523091,-0.1124201421838675,-0.11179554481965587,-0.11117783546852315,-0.11056690104210817,-0.1099626309093005,-0.1093649168299901,-0.10877365289094452,-0.10818873544373496,-0.10761006304463518,-0.1070375363964206,-0.10647105829199799,-0.10591053355979911,-0.10535586901087435,-0.10480697338762507,-0.10426375731411565,-0.10372613324790905,-0.10319401543337196,-0.10266731985639682,-0.1021459642004918,-0.10162986780419023,-0.10111895161973389,-0.10061313817298566,-0.10011235152452942,-0.09961651723191638,-0.09912556231301861,-0.09863941521045212,-0.09815800575703339,-0.09768126514223459,-0.09720912587960374,-0.09674152177511809,-0.09627838789643918,-0.09581966054304042,-0.09536527721717779,-0.0949151765956766,-0.09446929850250768,-0.09402758388212691,-0.09358997477355396,-0.09315641428516636,-0.09272684657018579,-0.09230121680283478,-0.09187947115514235,-0.09146155677437846,-0.091047421761097,-0.09063701514776869,-0.09023028687798529,-0.08982718778621761,-0.08942766957810985,-0.08903168481129424,-0.08863918687670962,-0.08825012998040899,-0.08786446912584081,-0.08748216009659004,-0.08710315943956486,-0.08672742444861593,-0.08635491314857514,-0.08598558427970121,-0.08561939728252065,-0.08525631228305183,-0.0848962900784012,-0.0845392921227208,-0.08418528051351655,-0.08383421797829697,-0.0834860678615527,-0.08314079411205731,-0.08279836127047999,-0.08245873445730147,-0.08212187936102444,-0.0817877622266702,-0.08145634984455333,-0.08112760953932671,-0.08080150915928938,-0.08047801706594986,-0.08015710212383755,-0.07983873369055605,-0.07952288160707115,-0.07920951618822702,-0.078898608213485,-0.07859012891787814,-0.0782840499831764,-0.07798034352925604,-0.07767898210566845,-0.07737993868340264,-0.07708318664683629,-0.07678869978587041,-0.0764964522882428,-0.07620641873201538,-0.07591857407823109,-0.07563289366373571,-0.07534935319416045,-0.07506792873706089,-0.07478859671520864,-0.07451133390003126,-0.07423611740519705,-0.07396292468034087,-0.07369173350492719,-0.07342252198224719,-0.07315526853354644,-0.07288995189227947,-0.07262655109848881,-0.07236504549330461,-0.07210541471356222,-0.07184763868653482,-0.07159169762477803,-0.0713375720210839,-0.07108524264354162,-0.07083469053070202,-0.07058589698684384,-0.0703388435773388,-0.07009351212411324,-0.0698498847012042,-0.0696079436304073,-0.06936767147701454,-0.0691290510456396,-0.06889206537612866,-0.06865669773955489,-0.06842293163429422,-0.06819075078218083,-0.06796013912474037,-0.06773108081949887,-0.06750356023636608,-0.06727756195409082,-0.0670530707567874,-0.06683007163053074,-0.0666085497600192,-0.06638849052530324,-0.06616987949857848,-0.06595270244104161,-0.06573694529980796,-0.06552259420488896,-0.06530963546622849,-0.06509805557079655,-0.06488784117973906,-0.06467897912558251,-0.06447145640949227,-0.06426526019858322,-0.06406037782328189,-0.06385679677473835,-0.06365450470228749,-0.06345348941095806,-0.06325373885902857,-0.06305524115562922,-0.0628579845583885,-0.06266195747112376,-0.06246714844157484,-0.062273546159179474,-0.06208113945289,-0.06188991728903014,-0.061699868769191264,-0.06151098312816712,-0.06132324973192626,-0.06113665807562135,-0.06095119778163467,-0.060766858597658874,-0.06058363039481244,-0.06040150316578901,-0.060220467023039834,-0.06004051219698878,-0.05986162903427913,-0.05968380799605154,-0.05950703965625245,-0.05933131469997254,-0.05915662392181417,-0.05898295822428787,-0.058810308616236505,-0.058638666211287306,-0.05846802222633063,-0.05829836798002517,-0.05812969489132918,-0.05796199447805683,-0.05779525835545957,-0.05762947823483178,-0.05746464592214034,-0.057300753316677444,-0.057137792409736564,-0.056975755283310635,-0.05681463410881247,-0.05665442114581667,-0.05649510874082263,-0.05633668932603854,-0.0561791554181855,-0.05602249961732166,-0.055866714605685965,-0.055711793146561085,-0.055557728083155115,-0.05540451233750176,-0.05525213890937866,-0.05510060087524337,-0.05494989138718687,-0.05480000367190407,-0.054650931029681146,-0.0545026668333993,-0.05435520452755455,-0.05420853762729355,-0.05406265971746478,-0.053917564451684996,-0.05377324555142073,-0.05362969680508438,-0.05348691206714467,-0.05334488525725141,-0.05320361035937394,-0.053063081420953354,-0.05292329255206797,-0.052784237924611954,-0.052645911771486975,-0.05250830838580623,-0.052371422120111144,-0.05223524738560015,-0.05209977865136942,-0.05196501044366543,-0.051830937345149014,-0.05169755399417077,-0.05156485508405757,-0.051432835362410154,-0.051301489630411166,-0.05117081274214409,-0.0510407996039223,-0.05091144517362835,-0.050782744460063325,-0.05065469252230599,-0.050527284469081495,-0.050400515458139734,-0.05027438069564286,-0.05014887543556204,-0.05002399497908319,-0.04989973467402152,-0.049776089914244835,-0.04965305613910528,-0.0495306288328795,-0.04940880352421715,-0.04928757578559736,-0.04916694123279316,-0.04904689552434397,-0.04892743436103544,-0.04880855348538717,-0.04869024868114764,-0.04857251577279654,-0.0484553506250544,-0.048338749142399016,-0.048222707268589106,-0.04810722098619463,-0.04799228631613393,-0.047877899317217296,-0.04776405608569734,-0.047650752754825436,-0.04753798549441466,-0.04742575051040881,-0.047314044044457534,-0.04720286237349746,-0.047092201809339165,-0.046982058698259936,-0.04687242942060225,-0.04676331039037784,-0.04665469805487724,-0.04654658889428483,-0.04643897942129908,-0.046331866180758144,-0.04622524574927064,-0.04611911473485133,-0.04601346977656205,-0.04590830754415737,-0.0458036247377351,-0.04569941808739169,-0.04559568435288221,-0.0454924203232849,-0.045389622816670416,-0.04528728867977544,-0.045185414787680594,-0.045083998043492945,-0.044983035378032485,-0.044882523749523014,-0.04478246014328702,-0.04468284157144473,-0.04458366507261706,-0.0444849277116326,-0.04438662657923837,-0.044288758791814514,-0.044191321491092714,-0.0440943118438782,-0.043997727041775604,-0.04390156430091822,-0.043805820861700935,-0.043710493988516556,-0.04361558096949559,-0.043521079116249424,-0.04342698576361683,-0.043333298269413685,-0.043240014014186014,-0.04314713040096614,-0.04305464485503196,-0.04296255482366939,-0.04287085777593776,-0.0427795512024382,-0.042688632615085084,-0.04259809954688024,-0.04250794955169009,-0.04241818020402564,-0.042328789098825155,-0.042239773851239705,-0.04215113209642125,-0.04206286148931349,-0.04197495970444538,-0.04188742443572703,-0.04180025339624834,-0.04171344431808012,-0.041626994952077515,-0.04154090306768608,-0.04145516645275013,-0.041369782913323445,-0.04128475027348241,-0.04120006637514133,-0.04111572907787006,-0.04103173625871392,-0.04094808581201573,-0.040864775649240015,-0.040781803698799475,-0.04069916790588333,-0.040616866232288,-0.04053489665624967,-0.04045325717227888,-0.040371945790997184,-0.04029096053897578,-0.040210299458575904,-0.040129960607791414,-0.04004994206009294,-0.039970241904274215,-0.03989085824429997,-0.03981178919915571,-0.039733032902699444,-0.03965458750351486,-0.03957645116476652,-0.039498622064056556,-0.039421098393283206,-0.039343878358500874,-0.03926696017978194,-0.039190342091080126,-0.039114022340095464,-0.039037999188140854,-0.03896227091001016,-0.038886835793847836,-0.03881169214102007,-0.03873683826598741,-0.038662272496178846,-0.03858799317186741,-0.038513998646047064,-0.03844028728431117,-0.03836685746473225,-0.03829370757774309,-0.03822083602601933,-0.03814824122436322,-0.038075921599588884,-0.03800387559040871,-0.03793210164732113,-0.03786059823249965,-0.03778936381968312,-0.03771839689406721,-0.03764769595219719,-0.037577259501861825,-0.03750708606198846,-0.0374371741625394,-0.03736752234440926,-0.03729812915932359,-0.03722899316973859,-0.03716011294874194,-0.0370914870799547,-0.03702311415743431,-0.03695499278557869,-0.036887121579031366,-0.03681949916258765,-0.036752124171101776,-0.03668499524939523,-0.036618111052165864,-0.0365514702438982,-0.03648507149877452,-0.0364189135005871,-0.03635299494265127,-0.03628731452771952,-0.036221870967896384,-0.03615666298455438,-0.036091689308250886,-0.03602694867864569,-0.03596243984441966,-0.03589816156319416,-0.035834112601451425,-0.03577029173445561,-0.035706697746174874],"x":[-3.0,-3.049800796812749,-3.099601593625498,-3.149402390438247,-3.199203187250996,-3.249003984063745,-3.298804780876494,-3.348605577689243,-3.398406374501992,-3.448207171314741,-3.49800796812749,-3.547808764940239,-3.597609561752988,-3.647410358565737,-3.697211155378486,-3.747011952191235,-3.7968127490039842,-3.846613545816733,-3.896414342629482,-3.946215139442231,-3.99601593625498,-4.0458167330677295,-4.095617529880478,-4.145418326693227,-4.195219123505976,-4.245019920318725,-4.294820717131474,-4.344621513944223,-4.394422310756972,-4.444223107569721,-4.49402390438247,-4.543824701195219,-4.5936254980079685,-4.643426294820717,-4.693227091633466,-4.743027888446215,-4.792828685258964,-4.842629482071713,-4.892430278884462,-4.942231075697211,-4.99203187250996,-5.04183266932271,-5.091633466135458,-5.1414342629482075,-5.191235059760956,-5.241035856573705,-5.290836653386454,-5.340637450199203,-5.390438247011952,-5.440239043824701,-5.49003984063745,-5.539840637450199,-5.589641434262949,-5.639442231075697,-5.6892430278884465,-5.739043824701195,-5.788844621513944,-5.838645418326693,-5.888446215139442,-5.938247011952191,-5.98804780876494,-6.03784860557769,-6.087649402390438,-6.137450199203188,-6.187250996015936,-6.2370517928286855,-6.286852589641434,-6.336653386454183,-6.386454183266932,-6.436254980079681,-6.48605577689243,-6.535856573705179,-6.585657370517929,-6.635458167330677,-6.685258964143427,-6.735059760956175,-6.7848605577689245,-6.834661354581673,-6.884462151394422,-6.934262948207171,-6.98406374501992,-7.03386454183267,-7.083665338645418,-7.133466135458168,-7.183266932270916,-7.233067729083666,-7.282868525896414,-7.3326693227091635,-7.382470119521912,-7.432270916334661,-7.48207171314741,-7.531872509960159,-7.581673306772909,-7.631474103585657,-7.681274900398407,-7.731075697211155,-7.780876494023905,-7.830677290836653,-7.8804780876494025,-7.930278884462151,-7.9800796812749,-8.02988047808765,-8.079681274900398,-8.129482071713147,-8.179282868525897,-8.229083665338646,-8.278884462151394,-8.328685258964143,-8.378486055776893,-8.428286852589641,-8.47808764940239,-8.52788844621514,-8.577689243027889,-8.627490039840637,-8.677290836653386,-8.727091633466136,-8.776892430278885,-8.826693227091633,-8.876494023904382,-8.926294820717132,-8.97609561752988,-9.025896414342629,-9.07569721115538,-9.125498007968128,-9.175298804780876,-9.225099601593625,-9.274900398406375,-9.324701195219124,-9.374501992031872,-9.42430278884462,-9.474103585657371,-9.52390438247012,-9.573705179282868,-9.623505976095618,-9.673306772908367,-9.723107569721115,-9.772908366533864,-9.822709163346614,-9.872509960159363,-9.922310756972111,-9.97211155378486,-10.02191235059761,-10.071713147410359,-10.121513944223107,-10.171314741035857,-10.221115537848606,-10.270916334661354,-10.320717131474103,-10.370517928286853,-10.420318725099602,-10.47011952191235,-10.5199203187251,-10.569721115537849,-10.619521912350598,-10.669322709163346,-10.719123505976096,-10.768924302788845,-10.818725099601593,-10.868525896414342,-10.918326693227092,-10.96812749003984,-11.01792828685259,-11.06772908366534,-11.117529880478088,-11.167330677290837,-11.217131474103585,-11.266932270916335,-11.316733067729084,-11.366533864541832,-11.41633466135458,-11.466135458167331,-11.51593625498008,-11.565737051792828,-11.615537848605578,-11.665338645418327,-11.715139442231076,-11.764940239043824,-11.814741035856574,-11.864541832669323,-11.914342629482071,-11.96414342629482,-12.01394422310757,-12.063745019920319,-12.113545816733067,-12.163346613545817,-12.213147410358566,-12.262948207171315,-12.312749003984063,-12.362549800796813,-12.412350597609562,-12.46215139442231,-12.51195219123506,-12.56175298804781,-12.611553784860558,-12.661354581673306,-12.711155378486056,-12.760956175298805,-12.810756972111554,-12.860557768924302,-12.910358565737052,-12.9601593625498,-13.00996015936255,-13.0597609561753,-13.109561752988048,-13.159362549800797,-13.209163346613545,-13.258964143426295,-13.308764940239044,-13.358565737051793,-13.408366533864541,-13.458167330677291,-13.50796812749004,-13.557768924302788,-13.607569721115539,-13.657370517928287,-13.707171314741036,-13.756972111553784,-13.806772908366534,-13.856573705179283,-13.906374501992032,-13.95617529880478,-14.00597609561753,-14.055776892430279,-14.105577689243027,-14.155378486055778,-14.205179282868526,-14.254980079681275,-14.304780876494023,-14.354581673306773,-14.404382470119522,-14.45418326693227,-14.50398406374502,-14.55378486055777,-14.603585657370518,-14.653386454183266,-14.703187250996017,-14.752988047808765,-14.802788844621514,-14.852589641434262,-14.902390438247012,-14.952191235059761,-15.00199203187251,-15.05179282868526,-15.101593625498008,-15.151394422310757,-15.201195219123505,-15.250996015936256,-15.300796812749004,-15.350597609561753,-15.400398406374501,-15.450199203187251,-15.5,-15.549800796812749,-15.599601593625499,-15.649402390438247,-15.699203187250996,-15.749003984063744,-15.798804780876495,-15.848605577689243,-15.898406374501992,-15.94820717131474,-15.99800796812749,-16.04780876494024,-16.09760956175299,-16.147410358565736,-16.197211155378486,-16.247011952191237,-16.296812749003983,-16.346613545816734,-16.39641434262948,-16.44621513944223,-16.49601593625498,-16.545816733067728,-16.595617529880478,-16.64541832669323,-16.695219123505975,-16.745019920318725,-16.794820717131476,-16.844621513944222,-16.894422310756973,-16.94422310756972,-16.99402390438247,-17.04382470119522,-17.093625498007967,-17.143426294820717,-17.193227091633467,-17.243027888446214,-17.292828685258964,-17.342629482071715,-17.39243027888446,-17.44223107569721,-17.49203187250996,-17.54183266932271,-17.59163346613546,-17.641434262948206,-17.691235059760956,-17.741035856573706,-17.790836653386453,-17.840637450199203,-17.890438247011954,-17.9402390438247,-17.99003984063745,-18.0398406374502,-18.089641434262948,-18.139442231075698,-18.189243027888445,-18.239043824701195,-18.288844621513945,-18.338645418326692,-18.388446215139442,-18.438247011952193,-18.48804780876494,-18.53784860557769,-18.58764940239044,-18.637450199203187,-18.687250996015937,-18.737051792828684,-18.786852589641434,-18.836653386454184,-18.88645418326693,-18.93625498007968,-18.98605577689243,-19.03585657370518,-19.08565737051793,-19.13545816733068,-19.185258964143426,-19.235059760956176,-19.284860557768923,-19.334661354581673,-19.384462151394423,-19.43426294820717,-19.48406374501992,-19.53386454183267,-19.583665338645417,-19.633466135458168,-19.683266932270918,-19.733067729083665,-19.782868525896415,-19.83266932270916,-19.882470119521912,-19.932270916334662,-19.98207171314741,-20.03187250996016,-20.08167330677291,-20.131474103585656,-20.181274900398407,-20.231075697211157,-20.280876494023904,-20.330677290836654,-20.3804780876494,-20.43027888446215,-20.4800796812749,-20.529880478087648,-20.5796812749004,-20.62948207171315,-20.679282868525895,-20.729083665338646,-20.778884462151396,-20.828685258964143,-20.878486055776893,-20.92828685258964,-20.97808764940239,-21.02788844621514,-21.077689243027887,-21.127490039840637,-21.177290836653388,-21.227091633466134,-21.276892430278885,-21.326693227091635,-21.37649402390438,-21.426294820717132,-21.47609561752988,-21.52589641434263,-21.57569721115538,-21.625498007968126,-21.675298804780876,-21.725099601593627,-21.774900398406373,-21.824701195219124,-21.874501992031874,-21.92430278884462,-21.97410358565737,-22.02390438247012,-22.073705179282868,-22.12350597609562,-22.173306772908365,-22.223107569721115,-22.272908366533866,-22.322709163346612,-22.372509960159363,-22.422310756972113,-22.47211155378486,-22.52191235059761,-22.57171314741036,-22.621513944223107,-22.671314741035857,-22.721115537848604,-22.770916334661354,-22.820717131474105,-22.87051792828685,-22.9203187250996,-22.970119521912352,-23.0199203187251,-23.06972111553785,-23.1195219123506,-23.169322709163346,-23.219123505976096,-23.268924302788843,-23.318725099601593,-23.368525896414344,-23.41832669322709,-23.46812749003984,-23.51792828685259,-23.567729083665338,-23.617529880478088,-23.66733067729084,-23.717131474103585,-23.766932270916335,-23.816733067729082,-23.866533864541832,-23.916334661354583,-23.96613545816733,-24.01593625498008,-24.06573705179283,-24.115537848605577,-24.165338645418327,-24.215139442231077,-24.264940239043824,-24.314741035856574,-24.36454183266932,-24.41434262948207,-24.46414342629482,-24.51394422310757,-24.56374501992032,-24.61354581673307,-24.663346613545816,-24.713147410358566,-24.762948207171316,-24.812749003984063,-24.862549800796813,-24.91235059760956,-24.96215139442231,-25.01195219123506,-25.061752988047807,-25.111553784860558,-25.161354581673308,-25.211155378486055,-25.260956175298805,-25.310756972111555,-25.360557768924302,-25.410358565737052,-25.4601593625498,-25.50996015936255,-25.5597609561753,-25.609561752988046,-25.659362549800797,-25.709163346613547,-25.758964143426294,-25.808764940239044,-25.858565737051794,-25.90836653386454,-25.95816733067729,-26.00796812749004,-26.05776892430279,-26.10756972111554,-26.157370517928285,-26.207171314741036,-26.256972111553786,-26.306772908366533,-26.356573705179283,-26.406374501992033,-26.45617529880478,-26.50597609561753,-26.55577689243028,-26.605577689243027,-26.655378486055778,-26.705179282868524,-26.754980079681275,-26.804780876494025,-26.85458167330677,-26.904382470119522,-26.954183266932272,-27.00398406374502,-27.05378486055777,-27.10358565737052,-27.153386454183266,-27.203187250996017,-27.252988047808763,-27.302788844621514,-27.352589641434264,-27.40239043824701,-27.45219123505976,-27.50199203187251,-27.551792828685258,-27.60159362549801,-27.65139442231076,-27.701195219123505,-27.750996015936256,-27.800796812749002,-27.850597609561753,-27.900398406374503,-27.95019920318725,-28.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_positive.json new file mode 100644 index 000000000000..dcb11fa80b1a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_positive.json @@ -0,0 +1 @@ +{"expected":[0.32745015023725843,0.32228220501757976,0.317272386683515,0.3124136500429473,0.30769935672565835,0.3031232466029938,0.2986794115555974,0.29436227136958615,0.2901665515644846,0.28608726297654286,0.2821196829390524,0.2782593379172548,0.2745019874696298,0.27084360941999,0.2672803861360766,0.26380869182040123,0.2604250807280673,0.2571262762343455,0.2539091606819807,0.2507707659446741,0.2477082646489839,0.2447189620021126,0.2418002881777449,0.23894979121633422,0.23616513040005896,0.233444070066118,0.2307844738251565,0.2281842991544351,0.22564159233791684,0.2231544837277625,0.22072118330383614,0.2183399765097308,0.216009220345571,0.21372733969942823,0.21149282390063295,0.20930422347958236,0.2071601471198436,0.2050592587894541,0.20300027503931994,0.20098196245753583,0.1990031352692899,0.19706265307278792,0.19515941870233972,0.19329237621039916,0.19146050896094657,0.18966283782715046,0.18789841948675062,0.1861663448090685,0.1844657373279805,0.18279575179558286,0.18115557281164252,0.17954441352426334,0.1779615143975094,0.17640614204201288,0.1748775881048603,0.17337516821529744,0.17189822098302027,0.17044610704603122,0.16901820816523483,0.16761392636313044,0.16623268310412634,0.16487391851415778,0.1635370906374371,0.16222167472829832,0.16092716257622758,0.15965306186228406,0.15839889554523037,0.15716420127578884,0.15594853083753865,0.15475144961305537,0.1535725360739786,0.1524113812937703,0.15126758848199823,0.15014077253904828,0.14903055963022988,0.1479365867783013,0.14685850147349372,0.1457959613001678,0.1447486335792827,0.1437161950259048,0.1426983314210256,0.14169473729699794,0.1407051156359385,0.13972917758047806,0.13876664215627746,0.13781723600575385,0.13688069313249654,0.13595675465587448,0.13504516857536697,0.1341456895441721,0.13325807865167058,0.13238210321434454,0.13151753657477194,0.13066415790833558,0.1298217520373042,0.12899010925196158,0.12816902513847303,0.12735830041319784,0.1265577407631667,0.12576715669246008,0.12498636337423422,0.1242151805081555,0.12345343218301351,0.12270094674429595,0.12195755666651785,0.1212230984301074,0.12049741240266042,0.11978034272438426,0.11907173719755963,0.11837144717985787,0.11767932748135736,0.11699523626511117,0.11631903495112404,0.11565058812360322,0.11498976344135406,0.11433643155119712,0.11369046600428852,0.11305174317523091,0.1124201421838675,0.11179554481965587,0.11117783546852315,0.11056690104210817,0.1099626309093005,0.1093649168299901,0.10877365289094452,0.10818873544373496,0.10761006304463518,0.1070375363964206,0.10647105829199799,0.10591053355979911,0.10535586901087435,0.10480697338762507,0.10426375731411565,0.10372613324790905,0.10319401543337196,0.10266731985639682,0.1021459642004918,0.10162986780419023,0.10111895161973389,0.10061313817298566,0.10011235152452942,0.09961651723191638,0.09912556231301861,0.09863941521045212,0.09815800575703339,0.09768126514223459,0.09720912587960374,0.09674152177511809,0.09627838789643918,0.09581966054304042,0.09536527721717779,0.0949151765956766,0.09446929850250768,0.09402758388212691,0.09358997477355396,0.09315641428516636,0.09272684657018579,0.09230121680283478,0.09187947115514235,0.09146155677437846,0.091047421761097,0.09063701514776869,0.09023028687798529,0.08982718778621761,0.08942766957810985,0.08903168481129424,0.08863918687670962,0.08825012998040899,0.08786446912584081,0.08748216009659004,0.08710315943956486,0.08672742444861593,0.08635491314857514,0.08598558427970121,0.08561939728252065,0.08525631228305183,0.0848962900784012,0.0845392921227208,0.08418528051351655,0.08383421797829697,0.0834860678615527,0.08314079411205731,0.08279836127047999,0.08245873445730147,0.08212187936102444,0.0817877622266702,0.08145634984455333,0.08112760953932671,0.08080150915928938,0.08047801706594986,0.08015710212383755,0.07983873369055605,0.07952288160707115,0.07920951618822702,0.078898608213485,0.07859012891787814,0.0782840499831764,0.07798034352925604,0.07767898210566845,0.07737993868340264,0.07708318664683629,0.07678869978587041,0.0764964522882428,0.07620641873201538,0.07591857407823109,0.07563289366373571,0.07534935319416045,0.07506792873706089,0.07478859671520864,0.07451133390003126,0.07423611740519705,0.07396292468034087,0.07369173350492719,0.07342252198224719,0.07315526853354644,0.07288995189227947,0.07262655109848881,0.07236504549330461,0.07210541471356222,0.07184763868653482,0.07159169762477803,0.0713375720210839,0.07108524264354162,0.07083469053070202,0.07058589698684384,0.0703388435773388,0.07009351212411324,0.0698498847012042,0.0696079436304073,0.06936767147701454,0.0691290510456396,0.06889206537612866,0.06865669773955489,0.06842293163429422,0.06819075078218083,0.06796013912474037,0.06773108081949887,0.06750356023636608,0.06727756195409082,0.0670530707567874,0.06683007163053074,0.0666085497600192,0.06638849052530324,0.06616987949857848,0.06595270244104161,0.06573694529980796,0.06552259420488896,0.06530963546622849,0.06509805557079655,0.06488784117973906,0.06467897912558251,0.06447145640949227,0.06426526019858322,0.06406037782328189,0.06385679677473835,0.06365450470228749,0.06345348941095806,0.06325373885902857,0.06305524115562922,0.0628579845583885,0.06266195747112376,0.06246714844157484,0.062273546159179474,0.06208113945289,0.06188991728903014,0.061699868769191264,0.06151098312816712,0.06132324973192626,0.06113665807562135,0.06095119778163467,0.060766858597658874,0.06058363039481244,0.06040150316578901,0.060220467023039834,0.06004051219698878,0.05986162903427913,0.05968380799605154,0.05950703965625245,0.05933131469997254,0.05915662392181417,0.05898295822428787,0.058810308616236505,0.058638666211287306,0.05846802222633063,0.05829836798002517,0.05812969489132918,0.05796199447805683,0.05779525835545957,0.05762947823483178,0.05746464592214034,0.057300753316677444,0.057137792409736564,0.056975755283310635,0.05681463410881247,0.05665442114581667,0.05649510874082263,0.05633668932603854,0.0561791554181855,0.05602249961732166,0.055866714605685965,0.055711793146561085,0.055557728083155115,0.05540451233750176,0.05525213890937866,0.05510060087524337,0.05494989138718687,0.05480000367190407,0.054650931029681146,0.0545026668333993,0.05435520452755455,0.05420853762729355,0.05406265971746478,0.053917564451684996,0.05377324555142073,0.05362969680508438,0.05348691206714467,0.05334488525725141,0.05320361035937394,0.053063081420953354,0.05292329255206797,0.052784237924611954,0.052645911771486975,0.05250830838580623,0.052371422120111144,0.05223524738560015,0.05209977865136942,0.05196501044366543,0.051830937345149014,0.05169755399417077,0.05156485508405757,0.051432835362410154,0.051301489630411166,0.05117081274214409,0.0510407996039223,0.05091144517362835,0.050782744460063325,0.05065469252230599,0.050527284469081495,0.050400515458139734,0.05027438069564286,0.05014887543556204,0.05002399497908319,0.04989973467402152,0.049776089914244835,0.04965305613910528,0.0495306288328795,0.04940880352421715,0.04928757578559736,0.04916694123279316,0.04904689552434397,0.04892743436103544,0.04880855348538717,0.04869024868114764,0.04857251577279654,0.0484553506250544,0.048338749142399016,0.048222707268589106,0.04810722098619463,0.04799228631613393,0.047877899317217296,0.04776405608569734,0.047650752754825436,0.04753798549441466,0.04742575051040881,0.047314044044457534,0.04720286237349746,0.047092201809339165,0.046982058698259936,0.04687242942060225,0.04676331039037784,0.04665469805487724,0.04654658889428483,0.04643897942129908,0.046331866180758144,0.04622524574927064,0.04611911473485133,0.04601346977656205,0.04590830754415737,0.0458036247377351,0.04569941808739169,0.04559568435288221,0.0454924203232849,0.045389622816670416,0.04528728867977544,0.045185414787680594,0.045083998043492945,0.044983035378032485,0.044882523749523014,0.04478246014328702,0.04468284157144473,0.04458366507261706,0.0444849277116326,0.04438662657923837,0.044288758791814514,0.044191321491092714,0.0440943118438782,0.043997727041775604,0.04390156430091822,0.043805820861700935,0.043710493988516556,0.04361558096949559,0.043521079116249424,0.04342698576361683,0.043333298269413685,0.043240014014186014,0.04314713040096614,0.04305464485503196,0.04296255482366939,0.04287085777593776,0.0427795512024382,0.042688632615085084,0.04259809954688024,0.04250794955169009,0.04241818020402564,0.042328789098825155,0.042239773851239705,0.04215113209642125,0.04206286148931349,0.04197495970444538,0.04188742443572703,0.04180025339624834,0.04171344431808012,0.041626994952077515,0.04154090306768608,0.04145516645275013,0.041369782913323445,0.04128475027348241,0.04120006637514133,0.04111572907787006,0.04103173625871392,0.04094808581201573,0.040864775649240015,0.040781803698799475,0.04069916790588333,0.040616866232288,0.04053489665624967,0.04045325717227888,0.040371945790997184,0.04029096053897578,0.040210299458575904,0.040129960607791414,0.04004994206009294,0.039970241904274215,0.03989085824429997,0.03981178919915571,0.039733032902699444,0.03965458750351486,0.03957645116476652,0.039498622064056556,0.039421098393283206,0.039343878358500874,0.03926696017978194,0.039190342091080126,0.039114022340095464,0.039037999188140854,0.03896227091001016,0.038886835793847836,0.03881169214102007,0.03873683826598741,0.038662272496178846,0.03858799317186741,0.038513998646047064,0.03844028728431117,0.03836685746473225,0.03829370757774309,0.03822083602601933,0.03814824122436322,0.038075921599588884,0.03800387559040871,0.03793210164732113,0.03786059823249965,0.03778936381968312,0.03771839689406721,0.03764769595219719,0.037577259501861825,0.03750708606198846,0.0374371741625394,0.03736752234440926,0.03729812915932359,0.03722899316973859,0.03716011294874194,0.0370914870799547,0.03702311415743431,0.03695499278557869,0.036887121579031366,0.03681949916258765,0.036752124171101776,0.03668499524939523,0.036618111052165864,0.0365514702438982,0.03648507149877452,0.0364189135005871,0.03635299494265127,0.03628731452771952,0.036221870967896384,0.03615666298455438,0.036091689308250886,0.03602694867864569,0.03596243984441966,0.03589816156319416,0.035834112601451425,0.03577029173445561,0.035706697746174874],"x":[3.0,3.049800796812749,3.099601593625498,3.149402390438247,3.199203187250996,3.249003984063745,3.298804780876494,3.348605577689243,3.398406374501992,3.448207171314741,3.49800796812749,3.547808764940239,3.597609561752988,3.647410358565737,3.697211155378486,3.747011952191235,3.7968127490039842,3.846613545816733,3.896414342629482,3.946215139442231,3.99601593625498,4.0458167330677295,4.095617529880478,4.145418326693227,4.195219123505976,4.245019920318725,4.294820717131474,4.344621513944223,4.394422310756972,4.444223107569721,4.49402390438247,4.543824701195219,4.5936254980079685,4.643426294820717,4.693227091633466,4.743027888446215,4.792828685258964,4.842629482071713,4.892430278884462,4.942231075697211,4.99203187250996,5.04183266932271,5.091633466135458,5.1414342629482075,5.191235059760956,5.241035856573705,5.290836653386454,5.340637450199203,5.390438247011952,5.440239043824701,5.49003984063745,5.539840637450199,5.589641434262949,5.639442231075697,5.6892430278884465,5.739043824701195,5.788844621513944,5.838645418326693,5.888446215139442,5.938247011952191,5.98804780876494,6.03784860557769,6.087649402390438,6.137450199203188,6.187250996015936,6.2370517928286855,6.286852589641434,6.336653386454183,6.386454183266932,6.436254980079681,6.48605577689243,6.535856573705179,6.585657370517929,6.635458167330677,6.685258964143427,6.735059760956175,6.7848605577689245,6.834661354581673,6.884462151394422,6.934262948207171,6.98406374501992,7.03386454183267,7.083665338645418,7.133466135458168,7.183266932270916,7.233067729083666,7.282868525896414,7.3326693227091635,7.382470119521912,7.432270916334661,7.48207171314741,7.531872509960159,7.581673306772909,7.631474103585657,7.681274900398407,7.731075697211155,7.780876494023905,7.830677290836653,7.8804780876494025,7.930278884462151,7.9800796812749,8.02988047808765,8.079681274900398,8.129482071713147,8.179282868525897,8.229083665338646,8.278884462151394,8.328685258964143,8.378486055776893,8.428286852589641,8.47808764940239,8.52788844621514,8.577689243027889,8.627490039840637,8.677290836653386,8.727091633466136,8.776892430278885,8.826693227091633,8.876494023904382,8.926294820717132,8.97609561752988,9.025896414342629,9.07569721115538,9.125498007968128,9.175298804780876,9.225099601593625,9.274900398406375,9.324701195219124,9.374501992031872,9.42430278884462,9.474103585657371,9.52390438247012,9.573705179282868,9.623505976095618,9.673306772908367,9.723107569721115,9.772908366533864,9.822709163346614,9.872509960159363,9.922310756972111,9.97211155378486,10.02191235059761,10.071713147410359,10.121513944223107,10.171314741035857,10.221115537848606,10.270916334661354,10.320717131474103,10.370517928286853,10.420318725099602,10.47011952191235,10.5199203187251,10.569721115537849,10.619521912350598,10.669322709163346,10.719123505976096,10.768924302788845,10.818725099601593,10.868525896414342,10.918326693227092,10.96812749003984,11.01792828685259,11.06772908366534,11.117529880478088,11.167330677290837,11.217131474103585,11.266932270916335,11.316733067729084,11.366533864541832,11.41633466135458,11.466135458167331,11.51593625498008,11.565737051792828,11.615537848605578,11.665338645418327,11.715139442231076,11.764940239043824,11.814741035856574,11.864541832669323,11.914342629482071,11.96414342629482,12.01394422310757,12.063745019920319,12.113545816733067,12.163346613545817,12.213147410358566,12.262948207171315,12.312749003984063,12.362549800796813,12.412350597609562,12.46215139442231,12.51195219123506,12.56175298804781,12.611553784860558,12.661354581673306,12.711155378486056,12.760956175298805,12.810756972111554,12.860557768924302,12.910358565737052,12.9601593625498,13.00996015936255,13.0597609561753,13.109561752988048,13.159362549800797,13.209163346613545,13.258964143426295,13.308764940239044,13.358565737051793,13.408366533864541,13.458167330677291,13.50796812749004,13.557768924302788,13.607569721115539,13.657370517928287,13.707171314741036,13.756972111553784,13.806772908366534,13.856573705179283,13.906374501992032,13.95617529880478,14.00597609561753,14.055776892430279,14.105577689243027,14.155378486055778,14.205179282868526,14.254980079681275,14.304780876494023,14.354581673306773,14.404382470119522,14.45418326693227,14.50398406374502,14.55378486055777,14.603585657370518,14.653386454183266,14.703187250996017,14.752988047808765,14.802788844621514,14.852589641434262,14.902390438247012,14.952191235059761,15.00199203187251,15.05179282868526,15.101593625498008,15.151394422310757,15.201195219123505,15.250996015936256,15.300796812749004,15.350597609561753,15.400398406374501,15.450199203187251,15.5,15.549800796812749,15.599601593625499,15.649402390438247,15.699203187250996,15.749003984063744,15.798804780876495,15.848605577689243,15.898406374501992,15.94820717131474,15.99800796812749,16.04780876494024,16.09760956175299,16.147410358565736,16.197211155378486,16.247011952191237,16.296812749003983,16.346613545816734,16.39641434262948,16.44621513944223,16.49601593625498,16.545816733067728,16.595617529880478,16.64541832669323,16.695219123505975,16.745019920318725,16.794820717131476,16.844621513944222,16.894422310756973,16.94422310756972,16.99402390438247,17.04382470119522,17.093625498007967,17.143426294820717,17.193227091633467,17.243027888446214,17.292828685258964,17.342629482071715,17.39243027888446,17.44223107569721,17.49203187250996,17.54183266932271,17.59163346613546,17.641434262948206,17.691235059760956,17.741035856573706,17.790836653386453,17.840637450199203,17.890438247011954,17.9402390438247,17.99003984063745,18.0398406374502,18.089641434262948,18.139442231075698,18.189243027888445,18.239043824701195,18.288844621513945,18.338645418326692,18.388446215139442,18.438247011952193,18.48804780876494,18.53784860557769,18.58764940239044,18.637450199203187,18.687250996015937,18.737051792828684,18.786852589641434,18.836653386454184,18.88645418326693,18.93625498007968,18.98605577689243,19.03585657370518,19.08565737051793,19.13545816733068,19.185258964143426,19.235059760956176,19.284860557768923,19.334661354581673,19.384462151394423,19.43426294820717,19.48406374501992,19.53386454183267,19.583665338645417,19.633466135458168,19.683266932270918,19.733067729083665,19.782868525896415,19.83266932270916,19.882470119521912,19.932270916334662,19.98207171314741,20.03187250996016,20.08167330677291,20.131474103585656,20.181274900398407,20.231075697211157,20.280876494023904,20.330677290836654,20.3804780876494,20.43027888446215,20.4800796812749,20.529880478087648,20.5796812749004,20.62948207171315,20.679282868525895,20.729083665338646,20.778884462151396,20.828685258964143,20.878486055776893,20.92828685258964,20.97808764940239,21.02788844621514,21.077689243027887,21.127490039840637,21.177290836653388,21.227091633466134,21.276892430278885,21.326693227091635,21.37649402390438,21.426294820717132,21.47609561752988,21.52589641434263,21.57569721115538,21.625498007968126,21.675298804780876,21.725099601593627,21.774900398406373,21.824701195219124,21.874501992031874,21.92430278884462,21.97410358565737,22.02390438247012,22.073705179282868,22.12350597609562,22.173306772908365,22.223107569721115,22.272908366533866,22.322709163346612,22.372509960159363,22.422310756972113,22.47211155378486,22.52191235059761,22.57171314741036,22.621513944223107,22.671314741035857,22.721115537848604,22.770916334661354,22.820717131474105,22.87051792828685,22.9203187250996,22.970119521912352,23.0199203187251,23.06972111553785,23.1195219123506,23.169322709163346,23.219123505976096,23.268924302788843,23.318725099601593,23.368525896414344,23.41832669322709,23.46812749003984,23.51792828685259,23.567729083665338,23.617529880478088,23.66733067729084,23.717131474103585,23.766932270916335,23.816733067729082,23.866533864541832,23.916334661354583,23.96613545816733,24.01593625498008,24.06573705179283,24.115537848605577,24.165338645418327,24.215139442231077,24.264940239043824,24.314741035856574,24.36454183266932,24.41434262948207,24.46414342629482,24.51394422310757,24.56374501992032,24.61354581673307,24.663346613545816,24.713147410358566,24.762948207171316,24.812749003984063,24.862549800796813,24.91235059760956,24.96215139442231,25.01195219123506,25.061752988047807,25.111553784860558,25.161354581673308,25.211155378486055,25.260956175298805,25.310756972111555,25.360557768924302,25.410358565737052,25.4601593625498,25.50996015936255,25.5597609561753,25.609561752988046,25.659362549800797,25.709163346613547,25.758964143426294,25.808764940239044,25.858565737051794,25.90836653386454,25.95816733067729,26.00796812749004,26.05776892430279,26.10756972111554,26.157370517928285,26.207171314741036,26.256972111553786,26.306772908366533,26.356573705179283,26.406374501992033,26.45617529880478,26.50597609561753,26.55577689243028,26.605577689243027,26.655378486055778,26.705179282868524,26.754980079681275,26.804780876494025,26.85458167330677,26.904382470119522,26.954183266932272,27.00398406374502,27.05378486055777,27.10358565737052,27.153386454183266,27.203187250996017,27.252988047808763,27.302788844621514,27.352589641434264,27.40239043824701,27.45219123505976,27.50199203187251,27.551792828685258,27.60159362549801,27.65139442231076,27.701195219123505,27.750996015936256,27.800796812749002,27.850597609561753,27.900398406374503,27.95019920318725,28.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_negative.json new file mode 100644 index 000000000000..643fcc4c413e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_negative.json @@ -0,0 +1 @@ +{"expected":[-0.035706697746174874,-0.035524803739635645,-0.03534475313496004,-0.035166518056279794,-0.034990071186844614,-0.034815385755076776,-0.03464243552104107,-0.0344711947633156,-0.034301638266249615,-0.034133741307595264,-0.03396747964650042,-0.03380282951185036,-0.03363976759094665,-0.033478271018511675,-0.0333183173660082,-0.03315988463126334,-0.033002951228386805,-0.03284749597797397,-0.03269349809758416,-0.03254093719248531,-0.03238979324665639,-0.03224004661403908,-0.03209167801003094,-0.03194466850321208,-0.03179899950729802,-0.031654652773311594,-0.03151161038196683,-0.031369854736258286,-0.031229368554249366,-0.03109013486205331,-0.03095213698700103,-0.030815358550989984,-0.03067978346400832,-0.030545395917829336,-0.030412180379870556,-0.03028012158721286,-0.03014920454077452,-0.030019414499635733,-0.02989073697550886,-0.029763157727350303,-0.029636662756109582,-0.02951123829961174,-0.029386870827568943,-0.029263547036717706,-0.02914125384607786,-0.029019978392329924,-0.028899708025307228,-0.028780430303599697,-0.028662132990265887,-0.02854480404865035,-0.028428431638303168,-0.028313004110998876,-0.028198510006851887,-0.028084938050525754,-0.027972277147533545,-0.027860516380626966,-0.027749645006271507,-0.027639652451205476,-0.02753052830908044,-0.027422262337180852,-0.027314844453220848,-0.027208264732215826,-0.027102513403427096,-0.02699758084737732,-0.026893457592935092,-0.026790134314466595,-0.0266876018290527,-0.026585851093769607,-0.026484873203031507,-0.026384659385993468,-0.026285201004013065,-0.026186489548169156,-0.026088516636836354,-0.02599127401331365,-0.02589475354350592,-0.02579894721365682,-0.025703847128131816,-0.02560944550725001,-0.025515734685163625,-0.025422707107783722,-0.02533035533075123,-0.025238672017451943,-0.02514764993707445,-0.025057281962709958,-0.02496756106949287,-0.024878480332781183,-0.024790032926375626,-0.02470221212077672,-0.024615011281478652,-0.024528423867299178,-0.024442443428744624,-0.024357063606409164,-0.02427227812940746,-0.024188080813839954,-0.02410446556128996,-0.024021426357351817,-0.023938957270189302,-0.023857052449123707,-0.023775706123250674,-0.023694912600085338,-0.023614666264234894,-0.023534961576098086,-0.023455793070590904,-0.023377155355897926,-0.023299043112248664,-0.02322145109071835,-0.02314437411205262,-0.02306780706551548,-0.02299174490776006,-0.022916182661721667,-0.022841115415532527,-0.022766538321457818,-0.022692446594852447,-0.02261883551313815,-0.022545700414800387,-0.02247303669840466,-0.022400839821631782,-0.02232910530033165,-0.02225782870759517,-0.022187005672843835,-0.022116631880936707,-0.022046703071294253,-0.021977215037038787,-0.021908163624151097,-0.021839544730642917,-0.02177135430574489,-0.021703588349109723,-0.0216362429100301,-0.02156931408667118,-0.021502798025317262,-0.021436690919632316,-0.021370989009934144,-0.02130568858248185,-0.021240785968776255,-0.021176277544873168,-0.02111215973070901,-0.021048428989438754,-0.020985081826785733,-0.020922114790403207,-0.02085952446924734,-0.02079730749296144,-0.02073546053127113,-0.020673980293390314,-0.020612863527437693,-0.020552107019863517,-0.020491707594886527,-0.020431662113940742,-0.02037196747513197,-0.02031262061270379,-0.020253618496512856,-0.0201949581315133,-0.020136636557250107,-0.020078650847361143,-0.020020998109087904,-0.019963675482794537,-0.01990668014149517,-0.019850009290389256,-0.019793660166404926,-0.019737630037749976,-0.019681916203470543,-0.019626515993017193,-0.01957142676581833,-0.019516645910860737,-0.0194621708462772,-0.019407999018940955,-0.019354127904066917,-0.01930055500481952,-0.019247277851927067,-0.01919429400330243,-0.019141601043669985,-0.019089196584198716,-0.019037078262141287,-0.01898524374047902,-0.018933690707572656,-0.01888241687681881,-0.018831419986311944,-0.018780697798511846,-0.01873024809991646,-0.018680068700739936,-0.018630157434595885,-0.018580512158185684,-0.01853113075099173,-0.018482011114975598,-0.018433151174280973,-0.01838454887494127,-0.01833620218459189,-0.018288109092186984,-0.01824026760772067,-0.018192675761952604,-0.018145331606137842,-0.018098233211760927,-0.01805137867027405,-0.018004766092839342,-0.01795839361007507,-0.01791225937180581,-0.017866361546816412,-0.01782069832260977,-0.01777526790516829,-0.017730068518718948,-0.017685098405502014,-0.017640355825543207,-0.01759583905642933,-0.0175515463930873,-0.01750747614756648,-0.017463626648824313,-0.01741999624251514,-0.0173765832907822,-0.01733338617205271,-0.017290403280836007,-0.01724763302752468,-0.017205073838198644,-0.017162724154432107,-0.017120582433103392,-0.01707864714620755,-0.017036916780671672,-0.016995389838173003,-0.016954064834959592,-0.016912940301673653,-0.016872014783177416,-0.016831286838381535,-0.016790755040075985,-0.01675041797476335,-0.016710274242494563,-0.01667032245670696,-0.01663056124406468,-0.016590989244301312,-0.016551605110064833,-0.016512407506764658,-0.016473395112420988,-0.016434566617516154,-0.016395920724848165,-0.016357456149386242,-0.01631917161812843,-0.016281065869961163,-0.016243137655520854,-0.016205385737057303,-0.016167808888299166,-0.01613040589432112,-0.016093175551413,-0.016056116666950667,-0.01601922805926869,-0.015982508557534757,-0.015945957001625845,-0.01590957224200604,-0.01587335313960605,-0.015837298565704348,-0.015801407401809978,-0.015765678539546853,-0.01573011088053973,-0.015694703336301637,-0.015659454828122865,-0.01562436428696144,-0.015589430653335066,-0.015554652877214494,-0.01552002991791836,-0.01548556074400937,-0.015451244333191894,-0.015417079672210935,-0.015383065756752395,-0.015349201591344688,-0.015315486189261637,-0.015281918572426646,-0.015248497771318153,-0.015215222824876272,-0.01518209278041071,-0.01514910669350983,-0.01511626362795097,-0.01508356265561183,-0.015051002856383087,-0.015018583318082096,-0.014986303136367734,-0.014954161414656305,-0.014922157264038543,-0.014890289803197685,-0.01485855815832859,-0.014826961463057864,-0.014795498858365038,-0.014764169492504715,-0.01473297252092975,-0.014701907106215325,-0.014670972417984067,-0.01464016763283206,-0.014609491934255791,-0.014578944512580017,-0.014548524564886551,-0.014518231294943909,-0.014488063913137866,-0.014458021636402831,-0.014428103688154127,-0.014398309298221073,-0.014368637702780906,-0.014339088144293514,-0.014309659871436975,-0.014280352139043898,-0.01425116420803852,-0.014222095345374596,-0.014193144823974033,-0.014164311922666288,-0.014135595926128489,-0.014106996124826274,-0.014078511814955374,-0.014050142298383883,-0.014021886882595229,-0.013993744880631825,-0.013965715611039412,-0.013937798397812062,-0.013909992570337827,-0.013882297463345053,-0.013854712416849345,-0.013827236776101122,-0.013799869891533832,-0.013772611118712768,-0.013745459818284497,-0.013718415355926864,-0.013691477102299612,-0.013664644432995556,-0.01363791672849237,-0.013611293374104886,-0.013584773759937985,-0.01355835728084004,-0.013532043336356886,-0.013505831330686321,-0.013479720672633151,-0.013453710775564749,-0.013427801057367132,-0.013401990940401518,-0.013376279851461429,-0.01335066722173024,-0.013325152486739256,-0.01329973508632624,-0.01327441446459441,-0.013249190069871944,-0.013224061354671903,-0.013199027775652624,-0.013174088793578563,-0.013149243873281593,-0.013124492483622713,-0.01309983409745421,-0.013075268191582235,-0.01305079424672981,-0.013026411747500233,-0.013002120182340912,-0.01297791904350759,-0.012953807827028976,-0.012929786032671753,-0.012905853163905998,-0.012882008727870977,-0.012858252235341313,-0.01283458320069352,-0.012811001141872926,-0.012787505580360958,-0.012764096041142764,-0.012740772052675209,-0.012717533146855222,-0.012694378858988477,-0.012671308727758424,-0.012648322295195661,-0.01262541910664762,-0.012602598710748602,-0.01257986065939014,-0.012557204507691641,-0.012534629813971408,-0.012512136139717914,-0.012489723049561436,-0.012467390111245941,-0.012445136895601321,-0.012422962976515902,-0.012400867930909236,-0.012378851338705215,-0.012356912782805426,-0.012335051849062844,-0.01231326812625575,-0.012291561206061955,-0.012269930683033298,-0.0122483761545704,-0.012226897220897677,-0.012205493485038648,-0.012184164552791454,-0.012162910032704694,-0.012141729536053443,-0.012120622676815582,-0.01209958907164833,-0.012078628339865062,-0.012057740103412316,-0.012036923986847088,-0.012016179617314325,-0.011995506624524685,-0.01197490464073248,-0.011954373300713894,-0.011933912241745387,-0.011913521103582356,-0.011893199528437969,-0.011872947160962264,-0.011852763648221427,-0.011832648639677293,-0.011812601787167053,-0.011792622744883165,-0.011772711169353498,-0.011752866719421603,-0.011733089056227277,-0.011713377843187246,-0.011693732745976088,-0.011674153432507335,-0.011654639572914741,-0.011635190839533788,-0.011615806906883325,-0.011596487451647423,-0.011577232152657397,-0.011558040690874015,-0.01153891274936987,-0.01151984801331195,-0.011500846169944344,-0.011481906908571166,-0.011463029920539606,-0.01144421489922317,-0.011425461540005072,-0.01140676954026181,-0.011388138599346882,-0.01136956841857466,-0.011351058701204439,-0.011332609152424638,-0.01131421947933713,-0.011295889390941765,-0.011277618598121006,-0.011259406813624742,-0.01124125375205522,-0.011223159129852155,-0.011205122665277949,-0.011187144078403091,-0.011169223091091652,-0.011151359426986968,-0.011133552811497407,-0.011115802971782331,-0.011098109636738138,-0.011080472536984473,-0.011062891404850552,-0.011045365974361628,-0.011027895981225574,-0.0110104811628196,-0.010993121258177092,-0.010975816007974584,-0.010958565154518837,-0.01094136844173406,-0.010924225615149228,-0.01090713642188554,-0.01089010061064398,-0.010873117931693002,-0.010856188136856333,-0.010839310979500876,-0.010822486214524737,-0.010805713598345364,-0.010788992888887789,-0.01077232384557299,-0.010755706229306343,-0.010739139802466192,-0.010722624328892542,-0.010706159573875808,-0.010689745304145723,-0.010673381287860304,-0.010657067294594959,-0.010640803095331648,-0.010624588462448176,-0.010608423169707582,-0.010592306992247615,-0.010576239706570302,-0.010560221090531619,-0.010544250923331258,-0.010528328985502485,-0.010512455058902075,-0.010496628926700367,-0.01048085037337137,-0.010465119184683007,-0.010449435147687402,-0.010433798050711271,-0.01041820768334641,-0.010402663836440252,-0.010387166302086515,-0.010371714873615935,-0.010356309345587077,-0.010340949513777238,-0.010325635175173412,-0.010310366127963348,-0.010295142171526703,-0.01027996310642623,-0.010264828734399087,-0.010249738858348198,-0.010234693282333705,-0.010219691811564482,-0.010204734252389725,-0.01018982041229063,-0.010174950099872125,-0.010160123124854686,-0.01014533929806623,-0.010130598431434051,-0.010115900337976868,-0.010101244831796894,-0.01008663172807203,-0.010072060843048063,-0.010057531994030993,-0.010043044999379382,-0.010028599678496784,-0.010014195851824252,-0.009999833340832886],"x":[-28.0,-28.143426294820717,-28.286852589641434,-28.43027888446215,-28.573705179282868,-28.717131474103585,-28.860557768924302,-29.00398406374502,-29.147410358565736,-29.290836653386453,-29.43426294820717,-29.577689243027887,-29.721115537848604,-29.86454183266932,-30.00796812749004,-30.15139442231076,-30.294820717131476,-30.438247011952193,-30.58167330677291,-30.725099601593627,-30.868525896414344,-31.01195219123506,-31.155378486055778,-31.298804780876495,-31.44223107569721,-31.58565737051793,-31.729083665338646,-31.872509960159363,-32.01593625498008,-32.1593625498008,-32.30278884462152,-32.44621513944223,-32.58964143426295,-32.733067729083665,-32.876494023904385,-33.0199203187251,-33.16334661354582,-33.30677290836653,-33.45019920318725,-33.59362549800797,-33.73705179282869,-33.8804780876494,-34.02390438247012,-34.167330677290835,-34.310756972111555,-34.45418326693227,-34.59760956175299,-34.7410358565737,-34.88446215139442,-35.02788844621514,-35.17131474103586,-35.31474103585657,-35.45816733067729,-35.601593625498005,-35.745019920318725,-35.88844621513944,-36.03187250996016,-36.17529880478088,-36.31872509960159,-36.462151394422314,-36.60557768924303,-36.74900398406375,-36.89243027888446,-37.03585657370518,-37.179282868525895,-37.322709163346616,-37.46613545816733,-37.60956175298805,-37.75298804780876,-37.896414342629484,-38.0398406374502,-38.18326693227092,-38.32669322709163,-38.47011952191235,-38.613545816733065,-38.756972111553786,-38.9003984063745,-39.04382470119522,-39.18725099601593,-39.330677290836654,-39.47410358565737,-39.61752988047809,-39.7609561752988,-39.90438247011952,-40.04780876494024,-40.191235059760956,-40.33466135458168,-40.47808764940239,-40.62151394422311,-40.764940239043824,-40.908366533864545,-41.05179282868526,-41.19521912350598,-41.33864541832669,-41.48207171314741,-41.625498007968126,-41.76892430278885,-41.91235059760956,-42.05577689243028,-42.199203187250994,-42.342629482071715,-42.48605577689243,-42.62948207171315,-42.77290836653386,-42.91633466135458,-43.059760956175296,-43.20318725099602,-43.34661354581673,-43.49003984063745,-43.633466135458164,-43.776892430278885,-43.9203187250996,-44.06374501992032,-44.20717131474104,-44.35059760956175,-44.49402390438247,-44.63745019920319,-44.78087649402391,-44.92430278884462,-45.06772908366534,-45.211155378486055,-45.354581673306775,-45.49800796812749,-45.64143426294821,-45.78486055776892,-45.92828685258964,-46.07171314741036,-46.21513944223108,-46.35856573705179,-46.50199203187251,-46.645418326693225,-46.788844621513945,-46.93227091633466,-47.07569721115538,-47.21912350597609,-47.36254980079681,-47.50597609561753,-47.64940239043825,-47.79282868525896,-47.93625498007968,-48.0796812749004,-48.223107569721115,-48.366533864541836,-48.50996015936255,-48.65338645418327,-48.79681274900398,-48.940239043824704,-49.08366533864542,-49.22709163346614,-49.37051792828685,-49.51394422310757,-49.657370517928285,-49.800796812749006,-49.94422310756972,-50.08764940239044,-50.23107569721115,-50.374501992031874,-50.51792828685259,-50.66135458167331,-50.80478087649402,-50.94820717131474,-51.091633466135455,-51.235059760956176,-51.37848605577689,-51.52191235059761,-51.66533864541832,-51.808764940239044,-51.95219123505976,-52.09561752988048,-52.2390438247012,-52.38247011952191,-52.52589641434263,-52.669322709163346,-52.81274900398407,-52.95617529880478,-53.0996015936255,-53.243027888446214,-53.386454183266935,-53.52988047808765,-53.67330677290837,-53.81673306772908,-53.9601593625498,-54.103585657370516,-54.24701195219124,-54.39043824701195,-54.53386454183267,-54.677290836653384,-54.820717131474105,-54.96414342629482,-55.10756972111554,-55.25099601593625,-55.39442231075697,-55.537848605577686,-55.68127490039841,-55.82470119521912,-55.96812749003984,-56.11155378486056,-56.254980079681275,-56.398406374501995,-56.54183266932271,-56.68525896414343,-56.82868525896414,-56.97211155378486,-57.11553784860558,-57.2589641434263,-57.40239043824701,-57.54581673306773,-57.689243027888445,-57.832669322709165,-57.97609561752988,-58.1195219123506,-58.26294820717131,-58.40637450199203,-58.54980079681275,-58.69322709163347,-58.83665338645418,-58.9800796812749,-59.123505976095615,-59.266932270916335,-59.41035856573705,-59.55378486055777,-59.69721115537848,-59.8406374501992,-59.98406374501992,-60.12749003984064,-60.27091633466136,-60.41434262948207,-60.55776892430279,-60.701195219123505,-60.844621513944226,-60.98804780876494,-61.13147410358566,-61.27490039840637,-61.418326693227094,-61.56175298804781,-61.70517928286853,-61.84860557768924,-61.99203187250996,-62.135458167330675,-62.278884462151396,-62.42231075697211,-62.56573705179283,-62.70916334661354,-62.852589641434264,-62.99601593625498,-63.1394422310757,-63.28286852589641,-63.42629482071713,-63.569721115537845,-63.713147410358566,-63.85657370517928,-64.0,-64.14342629482071,-64.28685258964144,-64.43027888446215,-64.57370517928287,-64.71713147410358,-64.86055776892431,-65.00398406374502,-65.14741035856574,-65.29083665338645,-65.43426294820718,-65.57768924302789,-65.7211155378486,-65.86454183266932,-66.00796812749005,-66.15139442231076,-66.29482071713147,-66.43824701195219,-66.58167330677291,-66.72509960159363,-66.86852589641434,-67.01195219123505,-67.15537848605578,-67.2988047808765,-67.44223107569721,-67.58565737051792,-67.72908366533865,-67.87250996015936,-68.01593625498008,-68.1593625498008,-68.30278884462152,-68.44621513944223,-68.58964143426294,-68.73306772908367,-68.87649402390439,-69.0199203187251,-69.16334661354581,-69.30677290836654,-69.45019920318725,-69.59362549800797,-69.73705179282868,-69.88047808764941,-70.02390438247012,-70.16733067729083,-70.31075697211155,-70.45418326693228,-70.59760956175299,-70.7410358565737,-70.88446215139442,-71.02788844621514,-71.17131474103586,-71.31474103585657,-71.45816733067728,-71.60159362549801,-71.74501992031873,-71.88844621513944,-72.03187250996017,-72.17529880478088,-72.3187250996016,-72.4621513944223,-72.60557768924303,-72.74900398406375,-72.89243027888446,-73.03585657370517,-73.1792828685259,-73.32270916334662,-73.46613545816733,-73.60956175298804,-73.75298804780877,-73.89641434262948,-74.0398406374502,-74.18326693227091,-74.32669322709164,-74.47011952191235,-74.61354581673307,-74.75697211155378,-74.9003984063745,-75.04382470119522,-75.18725099601593,-75.33067729083665,-75.47410358565737,-75.61752988047809,-75.7609561752988,-75.90438247011951,-76.04780876494024,-76.19123505976096,-76.33466135458167,-76.4780876494024,-76.62151394422311,-76.76494023904382,-76.90836653386454,-77.05179282868527,-77.19521912350598,-77.33864541832669,-77.4820717131474,-77.62549800796813,-77.76892430278885,-77.91235059760956,-78.05577689243027,-78.199203187251,-78.34262948207171,-78.48605577689243,-78.62948207171314,-78.77290836653387,-78.91633466135458,-79.0597609561753,-79.20318725099601,-79.34661354581674,-79.49003984063745,-79.63346613545816,-79.77689243027888,-79.9203187250996,-80.06374501992032,-80.20717131474103,-80.35059760956176,-80.49402390438247,-80.63745019920319,-80.7808764940239,-80.92430278884463,-81.06772908366534,-81.21115537848605,-81.35458167330677,-81.4980079681275,-81.64143426294821,-81.78486055776892,-81.92828685258964,-82.07171314741036,-82.21513944223108,-82.35856573705179,-82.5019920318725,-82.64541832669323,-82.78884462151395,-82.93227091633466,-83.07569721115537,-83.2191235059761,-83.36254980079681,-83.50597609561753,-83.64940239043824,-83.79282868525897,-83.93625498007968,-84.0796812749004,-84.22310756972112,-84.36653386454184,-84.50996015936255,-84.65338645418326,-84.79681274900399,-84.9402390438247,-85.08366533864542,-85.22709163346613,-85.37051792828686,-85.51394422310757,-85.65737051792829,-85.800796812749,-85.94422310756973,-86.08764940239044,-86.23107569721115,-86.37450199203187,-86.5179282868526,-86.66135458167331,-86.80478087649402,-86.94820717131473,-87.09163346613546,-87.23505976095618,-87.37848605577689,-87.5219123505976,-87.66533864541833,-87.80876494023904,-87.95219123505976,-88.09561752988049,-88.2390438247012,-88.38247011952191,-88.52589641434263,-88.66932270916335,-88.81274900398407,-88.95617529880478,-89.0996015936255,-89.24302788844622,-89.38645418326693,-89.52988047808765,-89.67330677290836,-89.81673306772909,-89.9601593625498,-90.10358565737052,-90.24701195219123,-90.39043824701196,-90.53386454183267,-90.67729083665338,-90.8207171314741,-90.96414342629483,-91.10756972111554,-91.25099601593625,-91.39442231075697,-91.5378486055777,-91.6812749003984,-91.82470119521912,-91.96812749003983,-92.11155378486056,-92.25498007968127,-92.39840637450199,-92.54183266932272,-92.68525896414343,-92.82868525896414,-92.97211155378486,-93.11553784860558,-93.2589641434263,-93.40239043824701,-93.54581673306772,-93.68924302788845,-93.83266932270917,-93.97609561752988,-94.11952191235059,-94.26294820717132,-94.40637450199203,-94.54980079681275,-94.69322709163346,-94.83665338645419,-94.9800796812749,-95.12350597609561,-95.26693227091633,-95.41035856573706,-95.55378486055777,-95.69721115537848,-95.8406374501992,-95.98406374501992,-96.12749003984064,-96.27091633466135,-96.41434262948208,-96.55776892430279,-96.7011952191235,-96.84462151394422,-96.98804780876495,-97.13147410358566,-97.27490039840637,-97.41832669322709,-97.56175298804781,-97.70517928286853,-97.84860557768924,-97.99203187250995,-98.13545816733068,-98.2788844621514,-98.42231075697211,-98.56573705179282,-98.70916334661355,-98.85258964143426,-98.99601593625498,-99.13944223107569,-99.28286852589642,-99.42629482071713,-99.56972111553785,-99.71314741035856,-99.85657370517929,-100.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_positive.json new file mode 100644 index 000000000000..a2581e9b32c3 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_positive.json @@ -0,0 +1 @@ +{"expected":[0.035706697746174874,0.035524803739635645,0.03534475313496004,0.035166518056279794,0.034990071186844614,0.034815385755076776,0.03464243552104107,0.0344711947633156,0.034301638266249615,0.034133741307595264,0.03396747964650042,0.03380282951185036,0.03363976759094665,0.033478271018511675,0.0333183173660082,0.03315988463126334,0.033002951228386805,0.03284749597797397,0.03269349809758416,0.03254093719248531,0.03238979324665639,0.03224004661403908,0.03209167801003094,0.03194466850321208,0.03179899950729802,0.031654652773311594,0.03151161038196683,0.031369854736258286,0.031229368554249366,0.03109013486205331,0.03095213698700103,0.030815358550989984,0.03067978346400832,0.030545395917829336,0.030412180379870556,0.03028012158721286,0.03014920454077452,0.030019414499635733,0.02989073697550886,0.029763157727350303,0.029636662756109582,0.02951123829961174,0.029386870827568943,0.029263547036717706,0.02914125384607786,0.029019978392329924,0.028899708025307228,0.028780430303599697,0.028662132990265887,0.02854480404865035,0.028428431638303168,0.028313004110998876,0.028198510006851887,0.028084938050525754,0.027972277147533545,0.027860516380626966,0.027749645006271507,0.027639652451205476,0.02753052830908044,0.027422262337180852,0.027314844453220848,0.027208264732215826,0.027102513403427096,0.02699758084737732,0.026893457592935092,0.026790134314466595,0.0266876018290527,0.026585851093769607,0.026484873203031507,0.026384659385993468,0.026285201004013065,0.026186489548169156,0.026088516636836354,0.02599127401331365,0.02589475354350592,0.02579894721365682,0.025703847128131816,0.02560944550725001,0.025515734685163625,0.025422707107783722,0.02533035533075123,0.025238672017451943,0.02514764993707445,0.025057281962709958,0.02496756106949287,0.024878480332781183,0.024790032926375626,0.02470221212077672,0.024615011281478652,0.024528423867299178,0.024442443428744624,0.024357063606409164,0.02427227812940746,0.024188080813839954,0.02410446556128996,0.024021426357351817,0.023938957270189302,0.023857052449123707,0.023775706123250674,0.023694912600085338,0.023614666264234894,0.023534961576098086,0.023455793070590904,0.023377155355897926,0.023299043112248664,0.02322145109071835,0.02314437411205262,0.02306780706551548,0.02299174490776006,0.022916182661721667,0.022841115415532527,0.022766538321457818,0.022692446594852447,0.02261883551313815,0.022545700414800387,0.02247303669840466,0.022400839821631782,0.02232910530033165,0.02225782870759517,0.022187005672843835,0.022116631880936707,0.022046703071294253,0.021977215037038787,0.021908163624151097,0.021839544730642917,0.02177135430574489,0.021703588349109723,0.0216362429100301,0.02156931408667118,0.021502798025317262,0.021436690919632316,0.021370989009934144,0.02130568858248185,0.021240785968776255,0.021176277544873168,0.02111215973070901,0.021048428989438754,0.020985081826785733,0.020922114790403207,0.02085952446924734,0.02079730749296144,0.02073546053127113,0.020673980293390314,0.020612863527437693,0.020552107019863517,0.020491707594886527,0.020431662113940742,0.02037196747513197,0.02031262061270379,0.020253618496512856,0.0201949581315133,0.020136636557250107,0.020078650847361143,0.020020998109087904,0.019963675482794537,0.01990668014149517,0.019850009290389256,0.019793660166404926,0.019737630037749976,0.019681916203470543,0.019626515993017193,0.01957142676581833,0.019516645910860737,0.0194621708462772,0.019407999018940955,0.019354127904066917,0.01930055500481952,0.019247277851927067,0.01919429400330243,0.019141601043669985,0.019089196584198716,0.019037078262141287,0.01898524374047902,0.018933690707572656,0.01888241687681881,0.018831419986311944,0.018780697798511846,0.01873024809991646,0.018680068700739936,0.018630157434595885,0.018580512158185684,0.01853113075099173,0.018482011114975598,0.018433151174280973,0.01838454887494127,0.01833620218459189,0.018288109092186984,0.01824026760772067,0.018192675761952604,0.018145331606137842,0.018098233211760927,0.01805137867027405,0.018004766092839342,0.01795839361007507,0.01791225937180581,0.017866361546816412,0.01782069832260977,0.01777526790516829,0.017730068518718948,0.017685098405502014,0.017640355825543207,0.01759583905642933,0.0175515463930873,0.01750747614756648,0.017463626648824313,0.01741999624251514,0.0173765832907822,0.01733338617205271,0.017290403280836007,0.01724763302752468,0.017205073838198644,0.017162724154432107,0.017120582433103392,0.01707864714620755,0.017036916780671672,0.016995389838173003,0.016954064834959592,0.016912940301673653,0.016872014783177416,0.016831286838381535,0.016790755040075985,0.01675041797476335,0.016710274242494563,0.01667032245670696,0.01663056124406468,0.016590989244301312,0.016551605110064833,0.016512407506764658,0.016473395112420988,0.016434566617516154,0.016395920724848165,0.016357456149386242,0.01631917161812843,0.016281065869961163,0.016243137655520854,0.016205385737057303,0.016167808888299166,0.01613040589432112,0.016093175551413,0.016056116666950667,0.01601922805926869,0.015982508557534757,0.015945957001625845,0.01590957224200604,0.01587335313960605,0.015837298565704348,0.015801407401809978,0.015765678539546853,0.01573011088053973,0.015694703336301637,0.015659454828122865,0.01562436428696144,0.015589430653335066,0.015554652877214494,0.01552002991791836,0.01548556074400937,0.015451244333191894,0.015417079672210935,0.015383065756752395,0.015349201591344688,0.015315486189261637,0.015281918572426646,0.015248497771318153,0.015215222824876272,0.01518209278041071,0.01514910669350983,0.01511626362795097,0.01508356265561183,0.015051002856383087,0.015018583318082096,0.014986303136367734,0.014954161414656305,0.014922157264038543,0.014890289803197685,0.01485855815832859,0.014826961463057864,0.014795498858365038,0.014764169492504715,0.01473297252092975,0.014701907106215325,0.014670972417984067,0.01464016763283206,0.014609491934255791,0.014578944512580017,0.014548524564886551,0.014518231294943909,0.014488063913137866,0.014458021636402831,0.014428103688154127,0.014398309298221073,0.014368637702780906,0.014339088144293514,0.014309659871436975,0.014280352139043898,0.01425116420803852,0.014222095345374596,0.014193144823974033,0.014164311922666288,0.014135595926128489,0.014106996124826274,0.014078511814955374,0.014050142298383883,0.014021886882595229,0.013993744880631825,0.013965715611039412,0.013937798397812062,0.013909992570337827,0.013882297463345053,0.013854712416849345,0.013827236776101122,0.013799869891533832,0.013772611118712768,0.013745459818284497,0.013718415355926864,0.013691477102299612,0.013664644432995556,0.01363791672849237,0.013611293374104886,0.013584773759937985,0.01355835728084004,0.013532043336356886,0.013505831330686321,0.013479720672633151,0.013453710775564749,0.013427801057367132,0.013401990940401518,0.013376279851461429,0.01335066722173024,0.013325152486739256,0.01329973508632624,0.01327441446459441,0.013249190069871944,0.013224061354671903,0.013199027775652624,0.013174088793578563,0.013149243873281593,0.013124492483622713,0.01309983409745421,0.013075268191582235,0.01305079424672981,0.013026411747500233,0.013002120182340912,0.01297791904350759,0.012953807827028976,0.012929786032671753,0.012905853163905998,0.012882008727870977,0.012858252235341313,0.01283458320069352,0.012811001141872926,0.012787505580360958,0.012764096041142764,0.012740772052675209,0.012717533146855222,0.012694378858988477,0.012671308727758424,0.012648322295195661,0.01262541910664762,0.012602598710748602,0.01257986065939014,0.012557204507691641,0.012534629813971408,0.012512136139717914,0.012489723049561436,0.012467390111245941,0.012445136895601321,0.012422962976515902,0.012400867930909236,0.012378851338705215,0.012356912782805426,0.012335051849062844,0.01231326812625575,0.012291561206061955,0.012269930683033298,0.0122483761545704,0.012226897220897677,0.012205493485038648,0.012184164552791454,0.012162910032704694,0.012141729536053443,0.012120622676815582,0.01209958907164833,0.012078628339865062,0.012057740103412316,0.012036923986847088,0.012016179617314325,0.011995506624524685,0.01197490464073248,0.011954373300713894,0.011933912241745387,0.011913521103582356,0.011893199528437969,0.011872947160962264,0.011852763648221427,0.011832648639677293,0.011812601787167053,0.011792622744883165,0.011772711169353498,0.011752866719421603,0.011733089056227277,0.011713377843187246,0.011693732745976088,0.011674153432507335,0.011654639572914741,0.011635190839533788,0.011615806906883325,0.011596487451647423,0.011577232152657397,0.011558040690874015,0.01153891274936987,0.01151984801331195,0.011500846169944344,0.011481906908571166,0.011463029920539606,0.01144421489922317,0.011425461540005072,0.01140676954026181,0.011388138599346882,0.01136956841857466,0.011351058701204439,0.011332609152424638,0.01131421947933713,0.011295889390941765,0.011277618598121006,0.011259406813624742,0.01124125375205522,0.011223159129852155,0.011205122665277949,0.011187144078403091,0.011169223091091652,0.011151359426986968,0.011133552811497407,0.011115802971782331,0.011098109636738138,0.011080472536984473,0.011062891404850552,0.011045365974361628,0.011027895981225574,0.0110104811628196,0.010993121258177092,0.010975816007974584,0.010958565154518837,0.01094136844173406,0.010924225615149228,0.01090713642188554,0.01089010061064398,0.010873117931693002,0.010856188136856333,0.010839310979500876,0.010822486214524737,0.010805713598345364,0.010788992888887789,0.01077232384557299,0.010755706229306343,0.010739139802466192,0.010722624328892542,0.010706159573875808,0.010689745304145723,0.010673381287860304,0.010657067294594959,0.010640803095331648,0.010624588462448176,0.010608423169707582,0.010592306992247615,0.010576239706570302,0.010560221090531619,0.010544250923331258,0.010528328985502485,0.010512455058902075,0.010496628926700367,0.01048085037337137,0.010465119184683007,0.010449435147687402,0.010433798050711271,0.01041820768334641,0.010402663836440252,0.010387166302086515,0.010371714873615935,0.010356309345587077,0.010340949513777238,0.010325635175173412,0.010310366127963348,0.010295142171526703,0.01027996310642623,0.010264828734399087,0.010249738858348198,0.010234693282333705,0.010219691811564482,0.010204734252389725,0.01018982041229063,0.010174950099872125,0.010160123124854686,0.01014533929806623,0.010130598431434051,0.010115900337976868,0.010101244831796894,0.01008663172807203,0.010072060843048063,0.010057531994030993,0.010043044999379382,0.010028599678496784,0.010014195851824252,0.009999833340832886],"x":[28.0,28.143426294820717,28.286852589641434,28.43027888446215,28.573705179282868,28.717131474103585,28.860557768924302,29.00398406374502,29.147410358565736,29.290836653386453,29.43426294820717,29.577689243027887,29.721115537848604,29.86454183266932,30.00796812749004,30.15139442231076,30.294820717131476,30.438247011952193,30.58167330677291,30.725099601593627,30.868525896414344,31.01195219123506,31.155378486055778,31.298804780876495,31.44223107569721,31.58565737051793,31.729083665338646,31.872509960159363,32.01593625498008,32.1593625498008,32.30278884462152,32.44621513944223,32.58964143426295,32.733067729083665,32.876494023904385,33.0199203187251,33.16334661354582,33.30677290836653,33.45019920318725,33.59362549800797,33.73705179282869,33.8804780876494,34.02390438247012,34.167330677290835,34.310756972111555,34.45418326693227,34.59760956175299,34.7410358565737,34.88446215139442,35.02788844621514,35.17131474103586,35.31474103585657,35.45816733067729,35.601593625498005,35.745019920318725,35.88844621513944,36.03187250996016,36.17529880478088,36.31872509960159,36.462151394422314,36.60557768924303,36.74900398406375,36.89243027888446,37.03585657370518,37.179282868525895,37.322709163346616,37.46613545816733,37.60956175298805,37.75298804780876,37.896414342629484,38.0398406374502,38.18326693227092,38.32669322709163,38.47011952191235,38.613545816733065,38.756972111553786,38.9003984063745,39.04382470119522,39.18725099601593,39.330677290836654,39.47410358565737,39.61752988047809,39.7609561752988,39.90438247011952,40.04780876494024,40.191235059760956,40.33466135458168,40.47808764940239,40.62151394422311,40.764940239043824,40.908366533864545,41.05179282868526,41.19521912350598,41.33864541832669,41.48207171314741,41.625498007968126,41.76892430278885,41.91235059760956,42.05577689243028,42.199203187250994,42.342629482071715,42.48605577689243,42.62948207171315,42.77290836653386,42.91633466135458,43.059760956175296,43.20318725099602,43.34661354581673,43.49003984063745,43.633466135458164,43.776892430278885,43.9203187250996,44.06374501992032,44.20717131474104,44.35059760956175,44.49402390438247,44.63745019920319,44.78087649402391,44.92430278884462,45.06772908366534,45.211155378486055,45.354581673306775,45.49800796812749,45.64143426294821,45.78486055776892,45.92828685258964,46.07171314741036,46.21513944223108,46.35856573705179,46.50199203187251,46.645418326693225,46.788844621513945,46.93227091633466,47.07569721115538,47.21912350597609,47.36254980079681,47.50597609561753,47.64940239043825,47.79282868525896,47.93625498007968,48.0796812749004,48.223107569721115,48.366533864541836,48.50996015936255,48.65338645418327,48.79681274900398,48.940239043824704,49.08366533864542,49.22709163346614,49.37051792828685,49.51394422310757,49.657370517928285,49.800796812749006,49.94422310756972,50.08764940239044,50.23107569721115,50.374501992031874,50.51792828685259,50.66135458167331,50.80478087649402,50.94820717131474,51.091633466135455,51.235059760956176,51.37848605577689,51.52191235059761,51.66533864541832,51.808764940239044,51.95219123505976,52.09561752988048,52.2390438247012,52.38247011952191,52.52589641434263,52.669322709163346,52.81274900398407,52.95617529880478,53.0996015936255,53.243027888446214,53.386454183266935,53.52988047808765,53.67330677290837,53.81673306772908,53.9601593625498,54.103585657370516,54.24701195219124,54.39043824701195,54.53386454183267,54.677290836653384,54.820717131474105,54.96414342629482,55.10756972111554,55.25099601593625,55.39442231075697,55.537848605577686,55.68127490039841,55.82470119521912,55.96812749003984,56.11155378486056,56.254980079681275,56.398406374501995,56.54183266932271,56.68525896414343,56.82868525896414,56.97211155378486,57.11553784860558,57.2589641434263,57.40239043824701,57.54581673306773,57.689243027888445,57.832669322709165,57.97609561752988,58.1195219123506,58.26294820717131,58.40637450199203,58.54980079681275,58.69322709163347,58.83665338645418,58.9800796812749,59.123505976095615,59.266932270916335,59.41035856573705,59.55378486055777,59.69721115537848,59.8406374501992,59.98406374501992,60.12749003984064,60.27091633466136,60.41434262948207,60.55776892430279,60.701195219123505,60.844621513944226,60.98804780876494,61.13147410358566,61.27490039840637,61.418326693227094,61.56175298804781,61.70517928286853,61.84860557768924,61.99203187250996,62.135458167330675,62.278884462151396,62.42231075697211,62.56573705179283,62.70916334661354,62.852589641434264,62.99601593625498,63.1394422310757,63.28286852589641,63.42629482071713,63.569721115537845,63.713147410358566,63.85657370517928,64.0,64.14342629482071,64.28685258964144,64.43027888446215,64.57370517928287,64.71713147410358,64.86055776892431,65.00398406374502,65.14741035856574,65.29083665338645,65.43426294820718,65.57768924302789,65.7211155378486,65.86454183266932,66.00796812749005,66.15139442231076,66.29482071713147,66.43824701195219,66.58167330677291,66.72509960159363,66.86852589641434,67.01195219123505,67.15537848605578,67.2988047808765,67.44223107569721,67.58565737051792,67.72908366533865,67.87250996015936,68.01593625498008,68.1593625498008,68.30278884462152,68.44621513944223,68.58964143426294,68.73306772908367,68.87649402390439,69.0199203187251,69.16334661354581,69.30677290836654,69.45019920318725,69.59362549800797,69.73705179282868,69.88047808764941,70.02390438247012,70.16733067729083,70.31075697211155,70.45418326693228,70.59760956175299,70.7410358565737,70.88446215139442,71.02788844621514,71.17131474103586,71.31474103585657,71.45816733067728,71.60159362549801,71.74501992031873,71.88844621513944,72.03187250996017,72.17529880478088,72.3187250996016,72.4621513944223,72.60557768924303,72.74900398406375,72.89243027888446,73.03585657370517,73.1792828685259,73.32270916334662,73.46613545816733,73.60956175298804,73.75298804780877,73.89641434262948,74.0398406374502,74.18326693227091,74.32669322709164,74.47011952191235,74.61354581673307,74.75697211155378,74.9003984063745,75.04382470119522,75.18725099601593,75.33067729083665,75.47410358565737,75.61752988047809,75.7609561752988,75.90438247011951,76.04780876494024,76.19123505976096,76.33466135458167,76.4780876494024,76.62151394422311,76.76494023904382,76.90836653386454,77.05179282868527,77.19521912350598,77.33864541832669,77.4820717131474,77.62549800796813,77.76892430278885,77.91235059760956,78.05577689243027,78.199203187251,78.34262948207171,78.48605577689243,78.62948207171314,78.77290836653387,78.91633466135458,79.0597609561753,79.20318725099601,79.34661354581674,79.49003984063745,79.63346613545816,79.77689243027888,79.9203187250996,80.06374501992032,80.20717131474103,80.35059760956176,80.49402390438247,80.63745019920319,80.7808764940239,80.92430278884463,81.06772908366534,81.21115537848605,81.35458167330677,81.4980079681275,81.64143426294821,81.78486055776892,81.92828685258964,82.07171314741036,82.21513944223108,82.35856573705179,82.5019920318725,82.64541832669323,82.78884462151395,82.93227091633466,83.07569721115537,83.2191235059761,83.36254980079681,83.50597609561753,83.64940239043824,83.79282868525897,83.93625498007968,84.0796812749004,84.22310756972112,84.36653386454184,84.50996015936255,84.65338645418326,84.79681274900399,84.9402390438247,85.08366533864542,85.22709163346613,85.37051792828686,85.51394422310757,85.65737051792829,85.800796812749,85.94422310756973,86.08764940239044,86.23107569721115,86.37450199203187,86.5179282868526,86.66135458167331,86.80478087649402,86.94820717131473,87.09163346613546,87.23505976095618,87.37848605577689,87.5219123505976,87.66533864541833,87.80876494023904,87.95219123505976,88.09561752988049,88.2390438247012,88.38247011952191,88.52589641434263,88.66932270916335,88.81274900398407,88.95617529880478,89.0996015936255,89.24302788844622,89.38645418326693,89.52988047808765,89.67330677290836,89.81673306772909,89.9601593625498,90.10358565737052,90.24701195219123,90.39043824701196,90.53386454183267,90.67729083665338,90.8207171314741,90.96414342629483,91.10756972111554,91.25099601593625,91.39442231075697,91.5378486055777,91.6812749003984,91.82470119521912,91.96812749003983,92.11155378486056,92.25498007968127,92.39840637450199,92.54183266932272,92.68525896414343,92.82868525896414,92.97211155378486,93.11553784860558,93.2589641434263,93.40239043824701,93.54581673306772,93.68924302788845,93.83266932270917,93.97609561752988,94.11952191235059,94.26294820717132,94.40637450199203,94.54980079681275,94.69322709163346,94.83665338645419,94.9800796812749,95.12350597609561,95.26693227091633,95.41035856573706,95.55378486055777,95.69721115537848,95.8406374501992,95.98406374501992,96.12749003984064,96.27091633466135,96.41434262948208,96.55776892430279,96.7011952191235,96.84462151394422,96.98804780876495,97.13147410358566,97.27490039840637,97.41832669322709,97.56175298804781,97.70517928286853,97.84860557768924,97.99203187250995,98.13545816733068,98.2788844621514,98.42231075697211,98.56573705179282,98.70916334661355,98.85258964143426,98.99601593625498,99.13944223107569,99.28286852589642,99.42629482071713,99.56972111553785,99.71314741035856,99.85657370517929,100.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_negative.json new file mode 100644 index 000000000000..6c1e0f9d3aed --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_negative.json @@ -0,0 +1 @@ +{"expected":[-0.881373587019543,-0.8785648221811828,-0.8757727485921216,-0.872997223399564,-0.8702381053721214,-0.8674952548760734,-0.8647685338520688,-0.8620578057922589,-0.8593629357178508,-0.8566837901570737,-0.8540202371235461,-0.8513721460950371,-0.8487393879926115,-0.8461218351601517,-0.8435193613442457,-0.8409318416744351,-0.8383591526438152,-0.8358011720899767,-0.8332577791762857,-0.830728854373491,-0.8282142794416545,-0.8257139374123945,-0.8232277125714388,-0.8207554904414776,-0.818297157765313,-0.8158526024892955,-0.8134217137470444,-0.8110043818434439,-0.808600498238911,-0.8062099555339275,-0.8038326474538329,-0.80146846883387,-0.7991173156044817,-0.7967790847768498,-0.7944536744286734,-0.7921409836901823,-0.7898409127303782,-0.7875533627435015,-0.7852782359357193,-0.7830154355120266,-0.7807648656633612,-0.7785264315539255,-0.7763000393087106,-0.7740855960012203,-0.7718830096413907,-0.7696921891637005,-0.7675130444154687,-0.7653454861453384,-0.7631894259919384,-0.761044776472724,-0.7589114509729903,-0.7567893637350566,-0.7546784298476171,-0.7525785652352567,-0.7504896866481258,-0.7484117116517751,-0.7463445586171438,-0.7442881467106999,-0.742242395884731,-0.7402072268677793,-0.7381825611552224,-0.7361683209999937,-0.7341644294034417,-0.7321708101063261,-0.7301873875799457,-0.7282140870173991,-0.7262508343249728,-0.7242975561136566,-0.7223541796907823,-0.720420633051785,-0.7184968448720837,-0.7165827444990802,-0.7146782619442725,-0.7127833278754824,-0.7108978736091945,-0.7090218311030053,-0.7071551329481788,-0.7052977123623084,-0.7034495031820842,-0.7016104398561599,-0.6997804574381221,-0.6979594915795581,-0.696147478523219,-0.6943443550962817,-0.6925500587037001,-0.6907645273216532,-0.6889876994910803,-0.6872195143113065,-0.6854599114337566,-0.683708831055755,-0.6819662139144081,-0.6802320012805743,-0.6785061349529113,-0.6767885572520083,-0.6750792110145938,-0.6733780395878244,-0.6716849868236489,-0.6699999970732475,-0.6683230151815468,-0.6666539864818065,-0.6649928567902786,-0.6633395724009379,-0.6616940800802807,-0.6600563270621939,-0.6584262610428896,-0.6568038301759084,-0.6551889830671853,-0.6535816687701826,-0.6519818367810841,-0.6503894370340527,-0.6488044198965491,-0.6472267361647105,-0.6456563370587898,-0.644093174218652,-0.6425371996993297,-0.6409883659666337,-0.6394466258928211,-0.6379119327523178,-0.6363842402174951,-0.6348635023544987,-0.6333496736191336,-0.6318427088527967,-0.630342563278463,-0.6288491924967214,-0.6273625524818596,-0.6258825995779984,-0.6244092904952742,-0.6229425823060674,-0.6214824324412789,-0.6200287986866527,-0.6185816391791422,-0.6171409124033228,-0.6157065771878469,-0.6142785927019441,-0.6128569184519623,-0.6114415142779519,-0.610032340350291,-0.6086293571663518,-0.6072325255472073,-0.6058418066343769,-0.6044571618866126,-0.6030785530767222,-0.6017059422884318,-0.6003392919132852,-0.5989785646475797,-0.5976237234893401,-0.5962747317353265,-0.5949315529780789,-0.5935941511029963,-0.5922624902854505,-0.5909365349879331,-0.5896162499572373,-0.588301600221671,-0.5869925510883044,-0.585689068140248,-0.5843911172339632,-0.5830986644966043,-0.5818116763233905,-0.580530119375009,-0.5792539605750476,-0.5779831671074576,-0.5767177064140449,-0.5754575461919903,-0.5742026543913986,-0.5729529992128755,-0.5717085491051309,-0.5704692727626122,-0.569235139123161,-0.5680061173656998,-0.5667821769079422,-0.5655632874041299,-0.5643494187427962,-0.5631405410445529,-0.5619366246599032,-0.5607376401670785,-0.5595435583698998,-0.5583543502956627,-0.5571699871930462,-0.5559904405300442,-0.5548156819919204,-0.5536456834791864,-0.5524804171056001,-0.5513198551961892,-0.550163970285293,-0.5490127351146292,-0.5478661226313792,-0.5467241059862957,-0.5455866585318304,-0.5444537538202826,-0.5433253656019679,-0.5422014678234057,-0.5410820346255282,-0.5399670403419075,-0.538856459497002,-0.5377502668044223,-0.5366484371652145,-0.5355509456661643,-0.5344577675781161,-0.5333688783543128,-0.5322842536287523,-0.5312038692145611,-0.5301277011023863,-0.5290557254588031,-0.5279879186247411,-0.5269242571139265,-0.5258647176113392,-0.5248092769716893,-0.5237579122179066,-0.522710600539648,-0.5216673192918201,-0.5206280459931163,-0.5195927583245711,-0.5185614341281269,-0.5175340514052191,-0.5165105883153723,-0.515491023174814,-0.5144753344551012,-0.513463500781761,-0.5124555009329473,-0.5114513138381083,-0.5104509185766699,-0.5094542943767325,-0.5084614206137804,-0.5074722768094041,-0.5064868426300376,-0.5055050978857065,-0.50452702252879,-0.5035525966527954,-0.5025818004911444,-0.5016146144159724,-0.5006510189369405,-0.4996909947000577,-0.4987345224865169,-0.4977815832115414,-0.4968321579232438,-0.49588622780149577,-0.4949437741568095,-0.49400477842923035,-0.49306922218724064,-0.49213708712667387,-0.49120835506964045,-0.4902830079634639,-0.48936102787962743,-0.488442397012731,-0.4875270976794594,-0.48661511231755883,-0.4857064234848262,-0.4848010138581056,-0.4838988662322967,-0.48299996351937236,-0.4821042887474049,-0.48121182505960347,-0.48032255571335974,-0.47943646407930335,-0.47855353364036657,-0.4776737479908578,-0.4767970908355445,-0.47592354598874453,-0.475053097373427,-0.47418572902032097,-0.4733214250670334,-0.47246016975717536,-0.47160194743949707,-0.47074674256703003,-0.4698945396962395,-0.46904532348618255,-0.4681990786976768,-0.4673557901924748,-0.466515442932448,-0.4656780219787775,-0.46484351249115274,-0.4640118997269785,-0.463183169040588,-0.4623573058824648,-0.4615342957984718,-0.46071412442908655,-0.4598967775086452,-0.45908224086459243,-0.4582705004167394,-0.4574615421765278,-0.4566553522463012,-0.45585191681858345,-0.4550512221753634,-0.4542532546873867,-0.4534580008134538,-0.4526654470997248,-0.4518755801790307,-0.4510883867701911,-0.4503038536773379,-0.44952196778924586,-0.4487427160786688,-0.4479660856016819,-0.447192063497031,-0.4464206369854866,-0.44565179336920463,-0.44488552003109283,-0.4441218044341831,-0.44336063412100923,-0.4426019967129909,-0.4418458799098227,-0.4410922714888692,-0.44034115930456513,-0.4395925312878215,-0.43884637544543653,-0.43810267985951257,-0.43736143268687755,-0.4366226221585126,-0.4358862365789836,-0.4351522643258793,-0.4344206938492533,-0.43369151367107184,-0.4329647123846659,-0.4322402786541888,-0.4315182012140784,-0.43079846886852385,-0.4300810704909378,-0.4293659950234328,-0.4286532314763019,-0.42794276892750527,-0.4272345965221598,-0.42652870347203464,-0.42582507905505007,-0.4251237126147816,-0.4244245935599676,-0.4237277113640225,-0.4230330555645532,-0.4223406157628802,-0.42165038162356266,-0.4209623428739282,-0.4202764893036064,-0.41959281076406607,-0.4189112971681575,-0.41823193848965756,-0.41755472476281996,-0.4168796460819281,-0.4162066926008534,-0.41553585453261566,-0.4148671221489491,-0.4142004857798705,-0.41353593581325204,-0.412873462694398,-0.412213056925624,-0.41155470906584096,-0.4108984097301425,-0.41024414958939526,-0.40959191936983297,-0.4089417098526549,-0.4082935118736262,-0.4076473163226829,-0.40700311414353985,-0.4063608963333015,-0.40572065394207757,-0.40508237807259945,-0.4044460598798426,-0.4038116905706502,-0.4031792614033609,-0.4025487636874394,-0.4019201887831102,-0.4012935281009946,-0.4006687731017507,-0.4000459152957161,-0.399424946242554,-0.3988058575509024,-0.39818864087802575,-0.3975732879294696,-0.3969597904587188,-0.3963481402668575,-0.395738329202233,-0.3951303491601217,-0.39452419208239803,-0.3939198499572065,-0.3933173148186359,-0.3927165787463964,-0.39211763386549964,-0.3915204723459409,-0.39092508640238455,-0.3903314682938515,-0.38973961032340965,-0.38914950483786637,-0.38856114422746446,-0.38797452092557944,-0.3873896274084201,-0.38680645619473136,-0.3862249998454995,-0.38564525096365965,-0.3850672021938058,-0.38449084622190327,-0.3839161757750034,-0.38334318362096076,-0.3827718625681521,-0.38220220546519845,-0.3816342052006884,-0.38106785470290494,-0.38050314693955306,-0.3799400749174908,-0.3793786316824615,-0.37881881031882914,-0.37826060394931477,-0.37770400573473595,-0.3771490088737478,-0.37659560660258634,-0.3760437921948137,-0.3754935589610655,-0.37494490024880006,-0.3743978094420501,-0.3738522799611758,-0.37330830526262015,-0.3727658788386662,-0.37222499421719635,-0.37168564496145323,-0.37114782466980284,-0.3706115269754993,-0.3700767455464516,-0.3695434740849921,-0.369011706327647,-0.36848143604490835,-0.36795265704100827,-0.3674253631536943,-0.3668995482540072,-0.36637520624606046,-0.36585233106682036,-0.3653309166858898,-0.36481095710529166,-0.3642924463592556,-0.36377537851400543,-0.3632597476675484,-0.36274554794946673,-0.3622327735207094,-0.3617214185733872,-0.36121147733056824,-0.3607029440460752,-0.36019581300428466,-0.3596900785199273,-0.3591857349378902,-0.3586827766330203,-0.3581811980099295,-0.3576809935028014,-0.3571821575751993,-0.3566846847198756,-0.356188569458583,-0.35569380634188696,-0.3552003899489795,-0.35470831488749444,-0.3542175757933242,-0.3537281673304381,-0.35324008419070135,-0.35275332109369645,-0.35226787278654503,-0.3517837340437316,-0.35130089966692835,-0.35081936448482154,-0.3503391233529387,-0.3498601711534779,-0.34938250279513744,-0.3489061132129476,-0.3484309973681031,-0.34795715024779705,-0.34748456686505624,-0.34701324225857744,-0.3465431714925648,-0.34607434965656925,-0.3456067718653281,-0.3451404332586063,-0.3446753290010391,-0.34421145428197525,-0.3437488043153223,-0.34328737433939177,-0.34282715961674715,-0.3423681554340509,-0.34191035710191486,-0.3414537599547501,-0.34099835935061823,-0.34054415067108457,-0.3400911293210716,-0.33963929072871357,-0.33918863034521257,-0.3387391436446951,-0.33829082612407063,-0.3378436733028899,-0.3373976807232054,-0.33695284394943215,-0.3365091585682099,-0.33606662018826605,-0.33562522444028003,-0.3351849669767478,-0.3347458434718485,-0.3343078496213109,-0.33387098114228164,-0.33343523377319423,-0.3330006032736386,-0.33256708542423236,-0.332134676026492,-0.331703370902706,-0.3312731658958082,-0.33084405686925233,-0.3304160397068874,-0.329989110312834,-0.3295632646113615,-0.32913849854676597,-0.32871480808324927,-0.3282921892047988,-0.3278706379150681,-0.32745015023725843],"x":[-1.0,-1.00398406374502,-1.0079681274900398,-1.0119521912350598,-1.0159362549800797,-1.0199203187250996,-1.0239043824701195,-1.0278884462151394,-1.0318725099601593,-1.0358565737051793,-1.0398406374501992,-1.043824701195219,-1.047808764940239,-1.051792828685259,-1.0557768924302788,-1.0597609561752988,-1.0637450199203187,-1.0677290836653386,-1.0717131474103585,-1.0756972111553784,-1.0796812749003983,-1.0836653386454183,-1.0876494023904382,-1.091633466135458,-1.095617529880478,-1.099601593625498,-1.1035856573705178,-1.1075697211155378,-1.1115537848605577,-1.1155378486055776,-1.1195219123505975,-1.1235059760956174,-1.1274900398406376,-1.1314741035856575,-1.1354581673306774,-1.1394422310756973,-1.1434262948207172,-1.1474103585657371,-1.151394422310757,-1.155378486055777,-1.159362549800797,-1.1633466135458168,-1.1673306772908367,-1.1713147410358566,-1.1752988047808766,-1.1792828685258965,-1.1832669322709164,-1.1872509960159363,-1.1912350597609562,-1.1952191235059761,-1.199203187250996,-1.203187250996016,-1.207171314741036,-1.2111553784860558,-1.2151394422310757,-1.2191235059760956,-1.2231075697211156,-1.2270916334661355,-1.2310756972111554,-1.2350597609561753,-1.2390438247011952,-1.2430278884462151,-1.247011952191235,-1.250996015936255,-1.254980079681275,-1.2589641434262948,-1.2629482071713147,-1.2669322709163346,-1.2709163346613546,-1.2749003984063745,-1.2788844621513944,-1.2828685258964143,-1.2868525896414342,-1.2908366533864541,-1.294820717131474,-1.298804780876494,-1.302788844621514,-1.3067729083665338,-1.3107569721115537,-1.3147410358565736,-1.3187250996015936,-1.3227091633466135,-1.3266932270916334,-1.3306772908366533,-1.3346613545816732,-1.3386454183266931,-1.342629482071713,-1.346613545816733,-1.350597609561753,-1.3545816733067728,-1.3585657370517927,-1.3625498007968126,-1.3665338645418326,-1.3705179282868525,-1.3745019920318724,-1.3784860557768925,-1.3824701195219125,-1.3864541832669324,-1.3904382470119523,-1.3944223107569722,-1.3984063745019921,-1.402390438247012,-1.406374501992032,-1.4103585657370519,-1.4143426294820718,-1.4183266932270917,-1.4223107569721116,-1.4262948207171315,-1.4302788844621515,-1.4342629482071714,-1.4382470119521913,-1.4422310756972112,-1.4462151394422311,-1.450199203187251,-1.454183266932271,-1.4581673306772909,-1.4621513944223108,-1.4661354581673307,-1.4701195219123506,-1.4741035856573705,-1.4780876494023905,-1.4820717131474104,-1.4860557768924303,-1.4900398406374502,-1.4940239043824701,-1.49800796812749,-1.50199203187251,-1.5059760956175299,-1.5099601593625498,-1.5139442231075697,-1.5179282868525896,-1.5219123505976095,-1.5258964143426295,-1.5298804780876494,-1.5338645418326693,-1.5378486055776892,-1.5418326693227091,-1.545816733067729,-1.549800796812749,-1.5537848605577689,-1.5577689243027888,-1.5617529880478087,-1.5657370517928286,-1.5697211155378485,-1.5737051792828685,-1.5776892430278884,-1.5816733067729083,-1.5856573705179282,-1.5896414342629481,-1.593625498007968,-1.597609561752988,-1.6015936254980079,-1.6055776892430278,-1.6095617529880477,-1.6135458167330676,-1.6175298804780875,-1.6215139442231075,-1.6254980079681276,-1.6294820717131475,-1.6334661354581674,-1.6374501992031874,-1.6414342629482073,-1.6454183266932272,-1.649402390438247,-1.653386454183267,-1.657370517928287,-1.6613545816733069,-1.6653386454183268,-1.6693227091633467,-1.6733067729083666,-1.6772908366533865,-1.6812749003984064,-1.6852589641434264,-1.6892430278884463,-1.6932270916334662,-1.697211155378486,-1.701195219123506,-1.705179282868526,-1.7091633466135459,-1.7131474103585658,-1.7171314741035857,-1.7211155378486056,-1.7250996015936255,-1.7290836653386454,-1.7330677290836654,-1.7370517928286853,-1.7410358565737052,-1.745019920318725,-1.749003984063745,-1.752988047808765,-1.7569721115537849,-1.7609561752988048,-1.7649402390438247,-1.7689243027888446,-1.7729083665338645,-1.7768924302788844,-1.7808764940239044,-1.7848605577689243,-1.7888446215139442,-1.792828685258964,-1.796812749003984,-1.800796812749004,-1.8047808764940239,-1.8087649402390438,-1.8127490039840637,-1.8167330677290836,-1.8207171314741035,-1.8247011952191234,-1.8286852589641434,-1.8326693227091633,-1.8366533864541832,-1.840637450199203,-1.844621513944223,-1.848605577689243,-1.8525896414342629,-1.8565737051792828,-1.8605577689243027,-1.8645418326693226,-1.8685258964143425,-1.8725099601593624,-1.8764940239043826,-1.8804780876494025,-1.8844621513944224,-1.8884462151394423,-1.8924302788844622,-1.8964143426294822,-1.900398406374502,-1.904382470119522,-1.908366533864542,-1.9123505976095618,-1.9163346613545817,-1.9203187250996017,-1.9243027888446216,-1.9282868525896415,-1.9322709163346614,-1.9362549800796813,-1.9402390438247012,-1.9442231075697212,-1.948207171314741,-1.952191235059761,-1.956175298804781,-1.9601593625498008,-1.9641434262948207,-1.9681274900398407,-1.9721115537848606,-1.9760956175298805,-1.9800796812749004,-1.9840637450199203,-1.9880478087649402,-1.9920318725099602,-1.99601593625498,-2.0,-2.00398406374502,-2.00796812749004,-2.0119521912350598,-2.0159362549800797,-2.0199203187250996,-2.0239043824701195,-2.0278884462151394,-2.0318725099601593,-2.0358565737051793,-2.039840637450199,-2.043824701195219,-2.047808764940239,-2.051792828685259,-2.055776892430279,-2.0597609561752988,-2.0637450199203187,-2.0677290836653386,-2.0717131474103585,-2.0756972111553784,-2.0796812749003983,-2.0836653386454183,-2.087649402390438,-2.091633466135458,-2.095617529880478,-2.099601593625498,-2.103585657370518,-2.1075697211155378,-2.1115537848605577,-2.1155378486055776,-2.1195219123505975,-2.1235059760956174,-2.1274900398406373,-2.1314741035856573,-2.135458167330677,-2.139442231075697,-2.143426294820717,-2.147410358565737,-2.151394422310757,-2.1553784860557768,-2.1593625498007967,-2.1633466135458166,-2.1673306772908365,-2.1713147410358564,-2.1752988047808763,-2.1792828685258963,-2.183266932270916,-2.187250996015936,-2.191235059760956,-2.195219123505976,-2.199203187250996,-2.2031872509960158,-2.2071713147410357,-2.2111553784860556,-2.2151394422310755,-2.2191235059760954,-2.2231075697211153,-2.2270916334661353,-2.231075697211155,-2.235059760956175,-2.239043824701195,-2.243027888446215,-2.247011952191235,-2.250996015936255,-2.254980079681275,-2.258964143426295,-2.262948207171315,-2.266932270916335,-2.270916334661355,-2.2749003984063747,-2.2788844621513946,-2.2828685258964145,-2.2868525896414345,-2.2908366533864544,-2.2948207171314743,-2.298804780876494,-2.302788844621514,-2.306772908366534,-2.310756972111554,-2.314741035856574,-2.318725099601594,-2.3227091633466137,-2.3266932270916336,-2.3306772908366535,-2.3346613545816735,-2.3386454183266934,-2.3426294820717133,-2.346613545816733,-2.350597609561753,-2.354581673306773,-2.358565737051793,-2.362549800796813,-2.366533864541833,-2.3705179282868527,-2.3745019920318726,-2.3784860557768925,-2.3824701195219125,-2.3864541832669324,-2.3904382470119523,-2.394422310756972,-2.398406374501992,-2.402390438247012,-2.406374501992032,-2.410358565737052,-2.414342629482072,-2.4183266932270917,-2.4223107569721116,-2.4262948207171315,-2.4302788844621515,-2.4342629482071714,-2.4382470119521913,-2.442231075697211,-2.446215139442231,-2.450199203187251,-2.454183266932271,-2.458167330677291,-2.462151394422311,-2.4661354581673307,-2.4701195219123506,-2.4741035856573705,-2.4780876494023905,-2.4820717131474104,-2.4860557768924303,-2.49003984063745,-2.49402390438247,-2.49800796812749,-2.50199203187251,-2.50597609561753,-2.50996015936255,-2.5139442231075697,-2.5179282868525896,-2.5219123505976095,-2.5258964143426295,-2.5298804780876494,-2.5338645418326693,-2.537848605577689,-2.541832669322709,-2.545816733067729,-2.549800796812749,-2.553784860557769,-2.557768924302789,-2.5617529880478087,-2.5657370517928286,-2.5697211155378485,-2.5737051792828685,-2.5776892430278884,-2.5816733067729083,-2.585657370517928,-2.589641434262948,-2.593625498007968,-2.597609561752988,-2.601593625498008,-2.605577689243028,-2.6095617529880477,-2.6135458167330676,-2.6175298804780875,-2.6215139442231075,-2.6254980079681274,-2.6294820717131473,-2.633466135458167,-2.637450199203187,-2.641434262948207,-2.645418326693227,-2.649402390438247,-2.653386454183267,-2.6573705179282867,-2.6613545816733066,-2.6653386454183265,-2.6693227091633465,-2.6733067729083664,-2.6772908366533863,-2.681274900398406,-2.685258964143426,-2.689243027888446,-2.693227091633466,-2.697211155378486,-2.701195219123506,-2.7051792828685257,-2.7091633466135456,-2.7131474103585655,-2.7171314741035855,-2.7211155378486054,-2.7250996015936253,-2.729083665338645,-2.733067729083665,-2.737051792828685,-2.741035856573705,-2.745019920318725,-2.749003984063745,-2.752988047808765,-2.756972111553785,-2.760956175298805,-2.764940239043825,-2.768924302788845,-2.7729083665338647,-2.7768924302788847,-2.7808764940239046,-2.7848605577689245,-2.7888446215139444,-2.7928286852589643,-2.7968127490039842,-2.800796812749004,-2.804780876494024,-2.808764940239044,-2.812749003984064,-2.816733067729084,-2.8207171314741037,-2.8247011952191237,-2.8286852589641436,-2.8326693227091635,-2.8366533864541834,-2.8406374501992033,-2.8446215139442232,-2.848605577689243,-2.852589641434263,-2.856573705179283,-2.860557768924303,-2.864541832669323,-2.8685258964143427,-2.8725099601593627,-2.8764940239043826,-2.8804780876494025,-2.8844621513944224,-2.8884462151394423,-2.8924302788844622,-2.896414342629482,-2.900398406374502,-2.904382470119522,-2.908366533864542,-2.912350597609562,-2.9163346613545817,-2.9203187250996017,-2.9243027888446216,-2.9282868525896415,-2.9322709163346614,-2.9362549800796813,-2.9402390438247012,-2.944223107569721,-2.948207171314741,-2.952191235059761,-2.956175298804781,-2.960159362549801,-2.9641434262948207,-2.9681274900398407,-2.9721115537848606,-2.9760956175298805,-2.9800796812749004,-2.9840637450199203,-2.9880478087649402,-2.99203187250996,-2.99601593625498,-3.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_positive.json new file mode 100644 index 000000000000..1808609050ff --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_positive.json @@ -0,0 +1 @@ +{"expected":[0.881373587019543,0.8785648221811828,0.8757727485921216,0.872997223399564,0.8702381053721214,0.8674952548760734,0.8647685338520688,0.8620578057922589,0.8593629357178508,0.8566837901570737,0.8540202371235461,0.8513721460950371,0.8487393879926115,0.8461218351601517,0.8435193613442457,0.8409318416744351,0.8383591526438152,0.8358011720899767,0.8332577791762857,0.830728854373491,0.8282142794416545,0.8257139374123945,0.8232277125714388,0.8207554904414776,0.818297157765313,0.8158526024892955,0.8134217137470444,0.8110043818434439,0.808600498238911,0.8062099555339275,0.8038326474538329,0.80146846883387,0.7991173156044817,0.7967790847768498,0.7944536744286734,0.7921409836901823,0.7898409127303782,0.7875533627435015,0.7852782359357193,0.7830154355120266,0.7807648656633612,0.7785264315539255,0.7763000393087106,0.7740855960012203,0.7718830096413907,0.7696921891637005,0.7675130444154687,0.7653454861453384,0.7631894259919384,0.761044776472724,0.7589114509729903,0.7567893637350566,0.7546784298476171,0.7525785652352567,0.7504896866481258,0.7484117116517751,0.7463445586171438,0.7442881467106999,0.742242395884731,0.7402072268677793,0.7381825611552224,0.7361683209999937,0.7341644294034417,0.7321708101063261,0.7301873875799457,0.7282140870173991,0.7262508343249728,0.7242975561136566,0.7223541796907823,0.720420633051785,0.7184968448720837,0.7165827444990802,0.7146782619442725,0.7127833278754824,0.7108978736091945,0.7090218311030053,0.7071551329481788,0.7052977123623084,0.7034495031820842,0.7016104398561599,0.6997804574381221,0.6979594915795581,0.696147478523219,0.6943443550962817,0.6925500587037001,0.6907645273216532,0.6889876994910803,0.6872195143113065,0.6854599114337566,0.683708831055755,0.6819662139144081,0.6802320012805743,0.6785061349529113,0.6767885572520083,0.6750792110145938,0.6733780395878244,0.6716849868236489,0.6699999970732475,0.6683230151815468,0.6666539864818065,0.6649928567902786,0.6633395724009379,0.6616940800802807,0.6600563270621939,0.6584262610428896,0.6568038301759084,0.6551889830671853,0.6535816687701826,0.6519818367810841,0.6503894370340527,0.6488044198965491,0.6472267361647105,0.6456563370587898,0.644093174218652,0.6425371996993297,0.6409883659666337,0.6394466258928211,0.6379119327523178,0.6363842402174951,0.6348635023544987,0.6333496736191336,0.6318427088527967,0.630342563278463,0.6288491924967214,0.6273625524818596,0.6258825995779984,0.6244092904952742,0.6229425823060674,0.6214824324412789,0.6200287986866527,0.6185816391791422,0.6171409124033228,0.6157065771878469,0.6142785927019441,0.6128569184519623,0.6114415142779519,0.610032340350291,0.6086293571663518,0.6072325255472073,0.6058418066343769,0.6044571618866126,0.6030785530767222,0.6017059422884318,0.6003392919132852,0.5989785646475797,0.5976237234893401,0.5962747317353265,0.5949315529780789,0.5935941511029963,0.5922624902854505,0.5909365349879331,0.5896162499572373,0.588301600221671,0.5869925510883044,0.585689068140248,0.5843911172339632,0.5830986644966043,0.5818116763233905,0.580530119375009,0.5792539605750476,0.5779831671074576,0.5767177064140449,0.5754575461919903,0.5742026543913986,0.5729529992128755,0.5717085491051309,0.5704692727626122,0.569235139123161,0.5680061173656998,0.5667821769079422,0.5655632874041299,0.5643494187427962,0.5631405410445529,0.5619366246599032,0.5607376401670785,0.5595435583698998,0.5583543502956627,0.5571699871930462,0.5559904405300442,0.5548156819919204,0.5536456834791864,0.5524804171056001,0.5513198551961892,0.550163970285293,0.5490127351146292,0.5478661226313792,0.5467241059862957,0.5455866585318304,0.5444537538202826,0.5433253656019679,0.5422014678234057,0.5410820346255282,0.5399670403419075,0.538856459497002,0.5377502668044223,0.5366484371652145,0.5355509456661643,0.5344577675781161,0.5333688783543128,0.5322842536287523,0.5312038692145611,0.5301277011023863,0.5290557254588031,0.5279879186247411,0.5269242571139265,0.5258647176113392,0.5248092769716893,0.5237579122179066,0.522710600539648,0.5216673192918201,0.5206280459931163,0.5195927583245711,0.5185614341281269,0.5175340514052191,0.5165105883153723,0.515491023174814,0.5144753344551012,0.513463500781761,0.5124555009329473,0.5114513138381083,0.5104509185766699,0.5094542943767325,0.5084614206137804,0.5074722768094041,0.5064868426300376,0.5055050978857065,0.50452702252879,0.5035525966527954,0.5025818004911444,0.5016146144159724,0.5006510189369405,0.4996909947000577,0.4987345224865169,0.4977815832115414,0.4968321579232438,0.49588622780149577,0.4949437741568095,0.49400477842923035,0.49306922218724064,0.49213708712667387,0.49120835506964045,0.4902830079634639,0.48936102787962743,0.488442397012731,0.4875270976794594,0.48661511231755883,0.4857064234848262,0.4848010138581056,0.4838988662322967,0.48299996351937236,0.4821042887474049,0.48121182505960347,0.48032255571335974,0.47943646407930335,0.47855353364036657,0.4776737479908578,0.4767970908355445,0.47592354598874453,0.475053097373427,0.47418572902032097,0.4733214250670334,0.47246016975717536,0.47160194743949707,0.47074674256703003,0.4698945396962395,0.46904532348618255,0.4681990786976768,0.4673557901924748,0.466515442932448,0.4656780219787775,0.46484351249115274,0.4640118997269785,0.463183169040588,0.4623573058824648,0.4615342957984718,0.46071412442908655,0.4598967775086452,0.45908224086459243,0.4582705004167394,0.4574615421765278,0.4566553522463012,0.45585191681858345,0.4550512221753634,0.4542532546873867,0.4534580008134538,0.4526654470997248,0.4518755801790307,0.4510883867701911,0.4503038536773379,0.44952196778924586,0.4487427160786688,0.4479660856016819,0.447192063497031,0.4464206369854866,0.44565179336920463,0.44488552003109283,0.4441218044341831,0.44336063412100923,0.4426019967129909,0.4418458799098227,0.4410922714888692,0.44034115930456513,0.4395925312878215,0.43884637544543653,0.43810267985951257,0.43736143268687755,0.4366226221585126,0.4358862365789836,0.4351522643258793,0.4344206938492533,0.43369151367107184,0.4329647123846659,0.4322402786541888,0.4315182012140784,0.43079846886852385,0.4300810704909378,0.4293659950234328,0.4286532314763019,0.42794276892750527,0.4272345965221598,0.42652870347203464,0.42582507905505007,0.4251237126147816,0.4244245935599676,0.4237277113640225,0.4230330555645532,0.4223406157628802,0.42165038162356266,0.4209623428739282,0.4202764893036064,0.41959281076406607,0.4189112971681575,0.41823193848965756,0.41755472476281996,0.4168796460819281,0.4162066926008534,0.41553585453261566,0.4148671221489491,0.4142004857798705,0.41353593581325204,0.412873462694398,0.412213056925624,0.41155470906584096,0.4108984097301425,0.41024414958939526,0.40959191936983297,0.4089417098526549,0.4082935118736262,0.4076473163226829,0.40700311414353985,0.4063608963333015,0.40572065394207757,0.40508237807259945,0.4044460598798426,0.4038116905706502,0.4031792614033609,0.4025487636874394,0.4019201887831102,0.4012935281009946,0.4006687731017507,0.4000459152957161,0.399424946242554,0.3988058575509024,0.39818864087802575,0.3975732879294696,0.3969597904587188,0.3963481402668575,0.395738329202233,0.3951303491601217,0.39452419208239803,0.3939198499572065,0.3933173148186359,0.3927165787463964,0.39211763386549964,0.3915204723459409,0.39092508640238455,0.3903314682938515,0.38973961032340965,0.38914950483786637,0.38856114422746446,0.38797452092557944,0.3873896274084201,0.38680645619473136,0.3862249998454995,0.38564525096365965,0.3850672021938058,0.38449084622190327,0.3839161757750034,0.38334318362096076,0.3827718625681521,0.38220220546519845,0.3816342052006884,0.38106785470290494,0.38050314693955306,0.3799400749174908,0.3793786316824615,0.37881881031882914,0.37826060394931477,0.37770400573473595,0.3771490088737478,0.37659560660258634,0.3760437921948137,0.3754935589610655,0.37494490024880006,0.3743978094420501,0.3738522799611758,0.37330830526262015,0.3727658788386662,0.37222499421719635,0.37168564496145323,0.37114782466980284,0.3706115269754993,0.3700767455464516,0.3695434740849921,0.369011706327647,0.36848143604490835,0.36795265704100827,0.3674253631536943,0.3668995482540072,0.36637520624606046,0.36585233106682036,0.3653309166858898,0.36481095710529166,0.3642924463592556,0.36377537851400543,0.3632597476675484,0.36274554794946673,0.3622327735207094,0.3617214185733872,0.36121147733056824,0.3607029440460752,0.36019581300428466,0.3596900785199273,0.3591857349378902,0.3586827766330203,0.3581811980099295,0.3576809935028014,0.3571821575751993,0.3566846847198756,0.356188569458583,0.35569380634188696,0.3552003899489795,0.35470831488749444,0.3542175757933242,0.3537281673304381,0.35324008419070135,0.35275332109369645,0.35226787278654503,0.3517837340437316,0.35130089966692835,0.35081936448482154,0.3503391233529387,0.3498601711534779,0.34938250279513744,0.3489061132129476,0.3484309973681031,0.34795715024779705,0.34748456686505624,0.34701324225857744,0.3465431714925648,0.34607434965656925,0.3456067718653281,0.3451404332586063,0.3446753290010391,0.34421145428197525,0.3437488043153223,0.34328737433939177,0.34282715961674715,0.3423681554340509,0.34191035710191486,0.3414537599547501,0.34099835935061823,0.34054415067108457,0.3400911293210716,0.33963929072871357,0.33918863034521257,0.3387391436446951,0.33829082612407063,0.3378436733028899,0.3373976807232054,0.33695284394943215,0.3365091585682099,0.33606662018826605,0.33562522444028003,0.3351849669767478,0.3347458434718485,0.3343078496213109,0.33387098114228164,0.33343523377319423,0.3330006032736386,0.33256708542423236,0.332134676026492,0.331703370902706,0.3312731658958082,0.33084405686925233,0.3304160397068874,0.329989110312834,0.3295632646113615,0.32913849854676597,0.32871480808324927,0.3282921892047988,0.3278706379150681,0.32745015023725843],"x":[1.0,1.00398406374502,1.0079681274900398,1.0119521912350598,1.0159362549800797,1.0199203187250996,1.0239043824701195,1.0278884462151394,1.0318725099601593,1.0358565737051793,1.0398406374501992,1.043824701195219,1.047808764940239,1.051792828685259,1.0557768924302788,1.0597609561752988,1.0637450199203187,1.0677290836653386,1.0717131474103585,1.0756972111553784,1.0796812749003983,1.0836653386454183,1.0876494023904382,1.091633466135458,1.095617529880478,1.099601593625498,1.1035856573705178,1.1075697211155378,1.1115537848605577,1.1155378486055776,1.1195219123505975,1.1235059760956174,1.1274900398406376,1.1314741035856575,1.1354581673306774,1.1394422310756973,1.1434262948207172,1.1474103585657371,1.151394422310757,1.155378486055777,1.159362549800797,1.1633466135458168,1.1673306772908367,1.1713147410358566,1.1752988047808766,1.1792828685258965,1.1832669322709164,1.1872509960159363,1.1912350597609562,1.1952191235059761,1.199203187250996,1.203187250996016,1.207171314741036,1.2111553784860558,1.2151394422310757,1.2191235059760956,1.2231075697211156,1.2270916334661355,1.2310756972111554,1.2350597609561753,1.2390438247011952,1.2430278884462151,1.247011952191235,1.250996015936255,1.254980079681275,1.2589641434262948,1.2629482071713147,1.2669322709163346,1.2709163346613546,1.2749003984063745,1.2788844621513944,1.2828685258964143,1.2868525896414342,1.2908366533864541,1.294820717131474,1.298804780876494,1.302788844621514,1.3067729083665338,1.3107569721115537,1.3147410358565736,1.3187250996015936,1.3227091633466135,1.3266932270916334,1.3306772908366533,1.3346613545816732,1.3386454183266931,1.342629482071713,1.346613545816733,1.350597609561753,1.3545816733067728,1.3585657370517927,1.3625498007968126,1.3665338645418326,1.3705179282868525,1.3745019920318724,1.3784860557768925,1.3824701195219125,1.3864541832669324,1.3904382470119523,1.3944223107569722,1.3984063745019921,1.402390438247012,1.406374501992032,1.4103585657370519,1.4143426294820718,1.4183266932270917,1.4223107569721116,1.4262948207171315,1.4302788844621515,1.4342629482071714,1.4382470119521913,1.4422310756972112,1.4462151394422311,1.450199203187251,1.454183266932271,1.4581673306772909,1.4621513944223108,1.4661354581673307,1.4701195219123506,1.4741035856573705,1.4780876494023905,1.4820717131474104,1.4860557768924303,1.4900398406374502,1.4940239043824701,1.49800796812749,1.50199203187251,1.5059760956175299,1.5099601593625498,1.5139442231075697,1.5179282868525896,1.5219123505976095,1.5258964143426295,1.5298804780876494,1.5338645418326693,1.5378486055776892,1.5418326693227091,1.545816733067729,1.549800796812749,1.5537848605577689,1.5577689243027888,1.5617529880478087,1.5657370517928286,1.5697211155378485,1.5737051792828685,1.5776892430278884,1.5816733067729083,1.5856573705179282,1.5896414342629481,1.593625498007968,1.597609561752988,1.6015936254980079,1.6055776892430278,1.6095617529880477,1.6135458167330676,1.6175298804780875,1.6215139442231075,1.6254980079681276,1.6294820717131475,1.6334661354581674,1.6374501992031874,1.6414342629482073,1.6454183266932272,1.649402390438247,1.653386454183267,1.657370517928287,1.6613545816733069,1.6653386454183268,1.6693227091633467,1.6733067729083666,1.6772908366533865,1.6812749003984064,1.6852589641434264,1.6892430278884463,1.6932270916334662,1.697211155378486,1.701195219123506,1.705179282868526,1.7091633466135459,1.7131474103585658,1.7171314741035857,1.7211155378486056,1.7250996015936255,1.7290836653386454,1.7330677290836654,1.7370517928286853,1.7410358565737052,1.745019920318725,1.749003984063745,1.752988047808765,1.7569721115537849,1.7609561752988048,1.7649402390438247,1.7689243027888446,1.7729083665338645,1.7768924302788844,1.7808764940239044,1.7848605577689243,1.7888446215139442,1.792828685258964,1.796812749003984,1.800796812749004,1.8047808764940239,1.8087649402390438,1.8127490039840637,1.8167330677290836,1.8207171314741035,1.8247011952191234,1.8286852589641434,1.8326693227091633,1.8366533864541832,1.840637450199203,1.844621513944223,1.848605577689243,1.8525896414342629,1.8565737051792828,1.8605577689243027,1.8645418326693226,1.8685258964143425,1.8725099601593624,1.8764940239043826,1.8804780876494025,1.8844621513944224,1.8884462151394423,1.8924302788844622,1.8964143426294822,1.900398406374502,1.904382470119522,1.908366533864542,1.9123505976095618,1.9163346613545817,1.9203187250996017,1.9243027888446216,1.9282868525896415,1.9322709163346614,1.9362549800796813,1.9402390438247012,1.9442231075697212,1.948207171314741,1.952191235059761,1.956175298804781,1.9601593625498008,1.9641434262948207,1.9681274900398407,1.9721115537848606,1.9760956175298805,1.9800796812749004,1.9840637450199203,1.9880478087649402,1.9920318725099602,1.99601593625498,2.0,2.00398406374502,2.00796812749004,2.0119521912350598,2.0159362549800797,2.0199203187250996,2.0239043824701195,2.0278884462151394,2.0318725099601593,2.0358565737051793,2.039840637450199,2.043824701195219,2.047808764940239,2.051792828685259,2.055776892430279,2.0597609561752988,2.0637450199203187,2.0677290836653386,2.0717131474103585,2.0756972111553784,2.0796812749003983,2.0836653386454183,2.087649402390438,2.091633466135458,2.095617529880478,2.099601593625498,2.103585657370518,2.1075697211155378,2.1115537848605577,2.1155378486055776,2.1195219123505975,2.1235059760956174,2.1274900398406373,2.1314741035856573,2.135458167330677,2.139442231075697,2.143426294820717,2.147410358565737,2.151394422310757,2.1553784860557768,2.1593625498007967,2.1633466135458166,2.1673306772908365,2.1713147410358564,2.1752988047808763,2.1792828685258963,2.183266932270916,2.187250996015936,2.191235059760956,2.195219123505976,2.199203187250996,2.2031872509960158,2.2071713147410357,2.2111553784860556,2.2151394422310755,2.2191235059760954,2.2231075697211153,2.2270916334661353,2.231075697211155,2.235059760956175,2.239043824701195,2.243027888446215,2.247011952191235,2.250996015936255,2.254980079681275,2.258964143426295,2.262948207171315,2.266932270916335,2.270916334661355,2.2749003984063747,2.2788844621513946,2.2828685258964145,2.2868525896414345,2.2908366533864544,2.2948207171314743,2.298804780876494,2.302788844621514,2.306772908366534,2.310756972111554,2.314741035856574,2.318725099601594,2.3227091633466137,2.3266932270916336,2.3306772908366535,2.3346613545816735,2.3386454183266934,2.3426294820717133,2.346613545816733,2.350597609561753,2.354581673306773,2.358565737051793,2.362549800796813,2.366533864541833,2.3705179282868527,2.3745019920318726,2.3784860557768925,2.3824701195219125,2.3864541832669324,2.3904382470119523,2.394422310756972,2.398406374501992,2.402390438247012,2.406374501992032,2.410358565737052,2.414342629482072,2.4183266932270917,2.4223107569721116,2.4262948207171315,2.4302788844621515,2.4342629482071714,2.4382470119521913,2.442231075697211,2.446215139442231,2.450199203187251,2.454183266932271,2.458167330677291,2.462151394422311,2.4661354581673307,2.4701195219123506,2.4741035856573705,2.4780876494023905,2.4820717131474104,2.4860557768924303,2.49003984063745,2.49402390438247,2.49800796812749,2.50199203187251,2.50597609561753,2.50996015936255,2.5139442231075697,2.5179282868525896,2.5219123505976095,2.5258964143426295,2.5298804780876494,2.5338645418326693,2.537848605577689,2.541832669322709,2.545816733067729,2.549800796812749,2.553784860557769,2.557768924302789,2.5617529880478087,2.5657370517928286,2.5697211155378485,2.5737051792828685,2.5776892430278884,2.5816733067729083,2.585657370517928,2.589641434262948,2.593625498007968,2.597609561752988,2.601593625498008,2.605577689243028,2.6095617529880477,2.6135458167330676,2.6175298804780875,2.6215139442231075,2.6254980079681274,2.6294820717131473,2.633466135458167,2.637450199203187,2.641434262948207,2.645418326693227,2.649402390438247,2.653386454183267,2.6573705179282867,2.6613545816733066,2.6653386454183265,2.6693227091633465,2.6733067729083664,2.6772908366533863,2.681274900398406,2.685258964143426,2.689243027888446,2.693227091633466,2.697211155378486,2.701195219123506,2.7051792828685257,2.7091633466135456,2.7131474103585655,2.7171314741035855,2.7211155378486054,2.7250996015936253,2.729083665338645,2.733067729083665,2.737051792828685,2.741035856573705,2.745019920318725,2.749003984063745,2.752988047808765,2.756972111553785,2.760956175298805,2.764940239043825,2.768924302788845,2.7729083665338647,2.7768924302788847,2.7808764940239046,2.7848605577689245,2.7888446215139444,2.7928286852589643,2.7968127490039842,2.800796812749004,2.804780876494024,2.808764940239044,2.812749003984064,2.816733067729084,2.8207171314741037,2.8247011952191237,2.8286852589641436,2.8326693227091635,2.8366533864541834,2.8406374501992033,2.8446215139442232,2.848605577689243,2.852589641434263,2.856573705179283,2.860557768924303,2.864541832669323,2.8685258964143427,2.8725099601593627,2.8764940239043826,2.8804780876494025,2.8844621513944224,2.8884462151394423,2.8924302788844622,2.896414342629482,2.900398406374502,2.904382470119522,2.908366533864542,2.912350597609562,2.9163346613545817,2.9203187250996017,2.9243027888446216,2.9282868525896415,2.9322709163346614,2.9362549800796813,2.9402390438247012,2.944223107569721,2.948207171314741,2.952191235059761,2.956175298804781,2.960159362549801,2.9641434262948207,2.9681274900398407,2.9721115537848606,2.9760956175298805,2.9800796812749004,2.9840637450199203,2.9880478087649402,2.99203187250996,2.99601593625498,3.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl new file mode 100755 index 000000000000..7c177e218c18 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl @@ -0,0 +1,114 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2022 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 JSON + +""" +gen( domain, name ) + +Generate fixture data and write to file. + +# Arguments + +* `domain`: domain +* `name::AbstractString`: output filename + +# Examples + +``` julia +julia> x = range( -1000, stop = 1000, length = 2001 ); +julia> gen( x, \"data.json\" ); +``` +""" +function gen( domain, name ) + x = collect( domain ); + y = acschf.( x ); + + # Store data to be written to file as a collection: + data = Dict([ + ("x", x), + ("expected", y) + ]); + + # Based on the script directory, create an output filepath: + filepath = joinpath( dir, name ); + + # Write the data to the output filepath as JSON: + outfile = open( filepath, "w" ); + write( outfile, JSON.json(data) ); + write( outfile, "\n" ); + close( outfile ); +end + +# Get the filename: +file = @__FILE__; + +# Extract the directory in which this file resides: +dir = dirname( file ); + +# Negative tiny values: +x = range( -1e-300, stop = -1e-308, length = 503 ); +gen( x, "tiny_negative.json" ); + +# Positive tiny values: +x = range( 1e-300, stop = 1e-308, length = 503 ); +gen( x, "tiny_positive.json" ); + +# Small(er) values: +x = range( -0.8, stop = 0.8, length = 503 ); +gen( x, "smaller.json" ); + +# Negative small values: +x = range( -0.8, stop = -1.0, length = 503 ); +gen( x, "small_negative.json" ); + +# Positive small values: +x = range( 0.8, stop = 1.0, length = 503 ); +gen( x, "small_positive.json" ); + +# Negative medium values: +x = range( -1.0, stop = -3.0, length = 503 ); +gen( x, "medium_negative.json" ); + +# Positive medium values: +x = range( 1.0, stop = 3.0, length = 503 ); +gen( x, "medium_positive.json" ); + +# Large negative values: +x = range( -3.0, stop = -28.0, length = 503 ); +gen( x, "large_negative.json" ); + +# Large positive values: +x = range( 3.0, stop = 28.0, length = 503 ); +gen( x, "large_positive.json" ); + +# Larger negative values: +x = range( -28.0, stop = -100.0, length = 503 ); +gen( x, "larger_negative.json" ); + +# Larger positive values: +x = range( 28.0, stop = 100.0, length = 503 ); +gen( x, "larger_positive.json" ); + +# Huge negative values: +x = range( -1e200, stop = -1e208, length = 503 ); +gen( x, "huge_negative.json" ); + +# Huge positive values: +x = range( 1e300, stop = 1e308, length = 503 ); +gen( x, "huge_positive.json" ); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_negative.json new file mode 100644 index 000000000000..24089f994a16 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_negative.json @@ -0,0 +1 @@ +{"expected":[-1.0475930126492587,-1.0472042683349878,-1.0468157929876352,-1.0464275863331858,-1.0460396480980116,-1.045651978008868,-1.045264575792896,-1.0448774411776196,-1.0444905738909456,-1.0441039736611633,-1.0437176402169426,-1.0433315732873356,-1.0429457726017728,-1.0425602378900651,-1.0421749688824014,-1.041789965309348,-1.04140522690185,-1.0410207533912268,-1.0406365445091748,-1.040252599987765,-1.039868919559443,-1.039485502957028,-1.0391023499137115,-1.0387194601630576,-1.0383368334390022,-1.0379544694758516,-1.0375723680082822,-1.0371905287713403,-1.0368089515004404,-1.036427635931365,-1.0360465818002647,-1.035665788843656,-1.0352852567984214,-1.0349049854018093,-1.0345249743914327,-1.0341452235052673,-1.0337657324816538,-1.0333865010592946,-1.0330075289772538,-1.0326288159749573,-1.0322503617921914,-1.031872166169102,-1.0314942288461946,-1.0311165495643335,-1.0307391280647402,-1.030361964088994,-1.0299850573790306,-1.0296084076771415,-1.029232014725974,-1.0288558782685293,-1.0284799980481631,-1.0281043738085842,-1.0277290052938537,-1.0273538922483856,-1.0269790344169443,-1.0266044315446454,-1.0262300833769549,-1.0258559896596873,-1.0254821501390066,-1.0251085645614246,-1.024735232673801,-1.0243621542233419,-1.0239893289575996,-1.0236167566244727,-1.023244436972204,-1.0228723697493805,-1.022500554704934,-1.0221289915881382,-1.0217576801486092,-1.0213866201363064,-1.0210158113015286,-1.0206452533949162,-1.0202749461674492,-1.019904889370447,-1.0195350827555676,-1.0191655260748074,-1.0187962190805,-1.0184271615253155,-1.0180583531622613,-1.0176897937446796,-1.0173214830262474,-1.0169534207609767,-1.0165856067032133,-1.016218040607636,-1.015850722229256,-1.0154836513234171,-1.0151168276457938,-1.0147502509523918,-1.0143839209995469,-1.0140178375439244,-1.013652000342519,-1.013286409152653,-1.0129210637319774,-1.0125559638384702,-1.0121911092304356,-1.011826499666504,-1.0114621349056319,-1.0110980147070994,-1.0107341388305124,-1.0103705070357993,-1.010007119083212,-1.0096439747333252,-1.0092810737470355,-1.0089184158855604,-1.0085560009104388,-1.0081938285835295,-1.007831898667011,-1.0074702109233808,-1.0071087651154558,-1.0067475610063688,-1.0063865983595723,-1.0060258769388344,-1.0056653965082387,-1.0053051568321867,-1.0049451576753927,-1.004585398802887,-1.0042258799800134,-1.003866600972429,-1.0035075615461044,-1.0031487614673211,-1.0027902005026743,-1.002431878419069,-1.0020737949837208,-1.0017159499641568,-1.001358343128212,-1.0010009742440316,-1.0006438430800684,-1.0002869494050834,-0.9999302929881454,-0.9995738735986293,-0.9992176910062168,-0.9988617449808951,-0.9985060352929567,-0.9981505617129987,-0.9977953240119218,-0.9974403219609316,-0.9970855553315355,-0.9967310238955436,-0.9963767274250684,-0.9960226656925236,-0.995668838470624,-0.9953152455323845,-0.9949618866511196,-0.9946087616004441,-0.9942558701542705,-0.9939032120868104,-0.9935507871725725,-0.9931985951863631,-0.9928466359032853,-0.9924949090987379,-0.9921434145484161,-0.9917921520283096,-0.9914411213147029,-0.9910903221841749,-0.9907397544135975,-0.9903894177801363,-0.9900393120612494,-0.9896894370346866,-0.9893397924784894,-0.9889903781709906,-0.9886411938908132,-0.9882922394168704,-0.987943514528365,-0.9875950190047889,-0.9872467526259219,-0.9868987151718327,-0.9865509064228768,-0.9862033261596973,-0.9858559741632233,-0.9855088502146703,-0.9851619540955391,-0.9848152855876158,-0.9844688444729707,-0.9841226305339584,-0.9837766435532168,-0.9834308833136675,-0.9830853495985136,-0.9827400421912414,-0.982394960875618,-0.9820501054356919,-0.9817054756557927,-0.981361071320529,-0.9810168922147902,-0.9806729381237442,-0.980329208832838,-0.9799857041277965,-0.9796424237946224,-0.9792993676195962,-0.9789565353892744,-0.97861392689049,-0.9782715419103523,-0.9779293802362451,-0.9775874416558282,-0.9772457259570353,-0.9769042329280734,-0.976562962357424,-0.9762219140338412,-0.9758810877463514,-0.9755404832842535,-0.9752001004371177,-0.9748599389947856,-0.9745199987473692,-0.9741802794852509,-0.973840780999083,-0.9735015030797869,-0.9731624455185525,-0.972823608106839,-0.9724849906363727,-0.9721465928991478,-0.9718084146874253,-0.9714704557937328,-0.9711327160108643,-0.970795195131879,-0.9704578929501015,-0.9701208092591214,-0.969783943852792,-0.9694472965252313,-0.9691108670708202,-0.9687746552842021,-0.9684386609602842,-0.9681028838942345,-0.9677673238814831,-0.9674319807177219,-0.9670968541989027,-0.9667619441212378,-0.9664272502811997,-0.9660927724755198,-0.9657585105011893,-0.965424464155457,-0.9650906332358307,-0.964757017540075,-0.9644236168662127,-0.964090431012523,-0.9637574597775407,-0.9634247029600583,-0.9630921603591222,-0.9627598317740348,-0.9624277170043529,-0.9620958158498873,-0.9617641281107034,-0.9614326535871189,-0.9611013920797055,-0.9607703433892867,-0.9604395073169384,-0.9601088836639885,-0.9597784722320156,-0.9594482728228496,-0.9591182852385708,-0.9587885092815093,-0.9584589447542449,-0.9581295914596066,-0.9578004492006723,-0.957471517780768,-0.9571427970034679,-0.9568142866725937,-0.9564859865922144,-0.9561578965666448,-0.9558300164004475,-0.9555023458984294,-0.9551748848656442,-0.9548476331073898,-0.9545205904292094,-0.95419375663689,-0.9538671315364626,-0.9535407149342019,-0.9532145066366253,-0.952888506450493,-0.9525627141828074,-0.9522371296408128,-0.951911752631995,-0.9515865829640807,-0.9512616204450374,-0.950936864883073,-0.9506123160866348,-0.95028797386441,-0.9499638380253246,-0.9496399083785434,-0.9493161847334695,-0.9489926668997435,-0.9486693546872444,-0.9483462479060876,-0.9480233463666251,-0.9477006498794458,-0.947378158255374,-0.9470558713054703,-0.9467337888410293,-0.9464119106735815,-0.9460902366148913,-0.9457687664769571,-0.9454475000720111,-0.9451264372125184,-0.9448055777111778,-0.9444849213809196,-0.9441644680349064,-0.943844217486533,-0.9435241695494256,-0.9432043240374407,-0.9428846807646659,-0.9425652395454188,-0.9422460001942472,-0.9419269625259277,-0.9416081263554669,-0.9412894914980993,-0.9409710577692881,-0.9406528249847247,-0.9403347929603276,-0.9400169615122429,-0.9396993304568437,-0.9393818996107294,-0.9390646687907254,-0.9387476378138826,-0.9384308064974785,-0.9381141746590144,-0.9377977421162169,-0.9374815086870366,-0.9371654741896484,-0.9368496384424503,-0.9365340012640642,-0.936218562473334,-0.9359033218893271,-0.935588279331332,-0.9352734346188601,-0.9349587875716433,-0.9346443380096346,-0.9343300857530089,-0.9340160306221599,-0.9337021724377024,-0.9333885110204703,-0.9330750461915167,-0.9327617777721146,-0.9324487055837543,-0.9321358294481452,-0.9318231491872144,-0.9315106646231066,-0.9311983755781834,-0.9308862818750236,-0.9305743833364224,-0.930262679785391,-0.9299511710451563,-0.9296398569391616,-0.9293287372910639,-0.929017811924736,-0.928707080664265,-0.9283965433339515,-0.9280861997583105,-0.9277760497620702,-0.9274660931701718,-0.9271563298077694,-0.9268467595002291,-0.9265373820731296,-0.9262281973522608,-0.9259192051636245,-0.9256104053334328,-0.9253017976881094,-0.9249933820542878,-0.9246851582588115,-0.9243771261287339,-0.924069285491318,-0.9237616361740354,-0.9234541780045665,-0.9231469108108002,-0.9228398344208336,-0.9225329486629711,-0.922226253365725,-0.9219197483578141,-0.9216134334681643,-0.9213073085259078,-0.9210013733603829,-0.920695627801134,-0.92039007167791,-0.920084704820666,-0.919779527059561,-0.9194745382249591,-0.9191697381474281,-0.91886512665774,-0.9185607035868698,-0.9182564687659964,-0.9179524220265008,-0.917648563199967,-0.9173448921181809,-0.9170414086131308,-0.9167381125170061,-0.9164350036621974,-0.9161320818812971,-0.9158293470070973,-0.9155267988725905,-0.9152244373109699,-0.9149222621556277,-0.9146202732401559,-0.9143184703983454,-0.9140168534641858,-0.9137154222718653,-0.9134141766557703,-0.9131131164504848,-0.9128122414907904,-0.912511551611666,-0.9122110466482874,-0.9119107264360269,-0.9116105908104533,-0.9113106396073312,-0.9110108726626207,-0.9107112898124777,-0.9104118908932529,-0.9101126757414922,-0.9098136441939351,-0.9095147960875161,-0.9092161312593633,-0.908917649546798,-0.9086193507873355,-0.9083212348186835,-0.9080233014787423,-0.9077255506056051,-0.9074279820375569,-0.9071305956130741,-0.9068333911708252,-0.9065363685496695,-0.9062395275886571,-0.9059428681270292,-0.9056463900042167,-0.9053500930598408,-0.9050539771337126,-0.9047580420658322,-0.904462287696389,-0.9041667138657611,-0.9038713204145156,-0.9035761071834073,-0.9032810740133793,-0.9029862207455622,-0.9026915472212742,-0.9023970532820201,-0.9021027387694923,-0.9018086035255691,-0.9015146473923151,-0.9012208702119812,-0.9009272718270034,-0.9006338520800037,-0.9003406108137888,-0.9000475478713502,-0.8997546630958643,-0.8994619563306911,-0.8991694274193753,-0.898877076205645,-0.8985849025334114,-0.898292906246769,-0.8980010871899954,-0.8977094452075505,-0.8974179801440767,-0.897126691844398,-0.8968355801535206,-0.8965446449166316,-0.8962538859791002,-0.8959633031864754,-0.8956728963844875,-0.8953826654190472,-0.8950926101362449,-0.894802730382351,-0.8945130260038152,-0.894223496847267,-0.8939341427595145,-0.8936449635875442,-0.893355959178522,-0.8930671293797907,-0.8927784740388721,-0.8924899930034652,-0.8922016861214461,-0.8919135532408686,-0.8916255942099627,-0.8913378088771354,-0.8910501970909699,-0.890762758700225,-0.890475493553836,-0.8901884015009133,-0.8899014823907423,-0.8896147360727839,-0.8893281623966732,-0.88904176121222,-0.8887555323694083,-0.8884694757183959,-0.8881835911095142,-0.8878978783932681,-0.8876123374203357,-0.887326968041568,-0.8870417701079882,-0.8867567434707923,-0.886471887981348,-0.8861872034911955,-0.8859026898520457,-0.8856183469157816,-0.8853341745344567,-0.8850501725602954,-0.8847663408456932,-0.8844826792432148,-0.8841991876055962,-0.8839158657857425,-0.883632713636728,-0.8833497310117971,-0.8830669177643627,-0.8827842737480064,-0.8825017988164786,-0.8822194928236978,-0.881937355623751,-0.8816553870708921,-0.881373587019543],"x":[-0.8,-0.800398406374502,-0.8007968127490039,-0.801195219123506,-0.801593625498008,-0.80199203187251,-0.802390438247012,-0.8027888446215139,-0.803187250996016,-0.8035856573705179,-0.80398406374502,-0.8043824701195219,-0.8047808764940239,-0.8051792828685259,-0.8055776892430279,-0.8059760956175299,-0.8063745019920319,-0.8067729083665338,-0.8071713147410359,-0.8075697211155378,-0.8079681274900399,-0.8083665338645418,-0.8087649402390438,-0.8091633466135458,-0.8095617529880478,-0.8099601593625498,-0.8103585657370518,-0.8107569721115537,-0.8111553784860558,-0.8115537848605577,-0.8119521912350598,-0.8123505976095617,-0.8127490039840638,-0.8131474103585657,-0.8135458167330677,-0.8139442231075698,-0.8143426294820717,-0.8147410358565738,-0.8151394422310757,-0.8155378486055777,-0.8159362549800797,-0.8163346613545817,-0.8167330677290837,-0.8171314741035857,-0.8175298804780876,-0.8179282868525897,-0.8183266932270916,-0.8187250996015937,-0.8191235059760956,-0.8195219123505976,-0.8199203187250996,-0.8203187250996016,-0.8207171314741036,-0.8211155378486056,-0.8215139442231075,-0.8219123505976096,-0.8223107569721115,-0.8227091633466136,-0.8231075697211155,-0.8235059760956175,-0.8239043824701195,-0.8243027888446215,-0.8247011952191236,-0.8250996015936255,-0.8254980079681274,-0.8258964143426295,-0.8262948207171315,-0.8266932270916335,-0.8270916334661355,-0.8274900398406374,-0.8278884462151395,-0.8282868525896414,-0.8286852589641435,-0.8290836653386454,-0.8294820717131474,-0.8298804780876494,-0.8302788844621514,-0.8306772908366534,-0.8310756972111554,-0.8314741035856573,-0.8318725099601594,-0.8322709163346613,-0.8326693227091634,-0.8330677290836653,-0.8334661354581673,-0.8338645418326693,-0.8342629482071713,-0.8346613545816733,-0.8350597609561753,-0.8354581673306772,-0.8358565737051793,-0.8362549800796812,-0.8366533864541833,-0.8370517928286852,-0.8374501992031872,-0.8378486055776893,-0.8382470119521912,-0.8386454183266933,-0.8390438247011952,-0.8394422310756973,-0.8398406374501992,-0.8402390438247012,-0.8406374501992032,-0.8410358565737052,-0.8414342629482072,-0.8418326693227092,-0.8422310756972111,-0.8426294820717132,-0.8430278884462151,-0.8434262948207172,-0.8438247011952191,-0.8442231075697211,-0.8446215139442231,-0.8450199203187251,-0.8454183266932271,-0.8458167330677291,-0.846215139442231,-0.8466135458167331,-0.847011952191235,-0.8474103585657371,-0.847808764940239,-0.848207171314741,-0.848605577689243,-0.849003984063745,-0.8494023904382471,-0.849800796812749,-0.850199203187251,-0.850597609561753,-0.850996015936255,-0.851394422310757,-0.851792828685259,-0.8521912350597609,-0.852589641434263,-0.8529880478087649,-0.853386454183267,-0.8537848605577689,-0.8541832669322709,-0.8545816733067729,-0.8549800796812749,-0.8553784860557769,-0.8557768924302789,-0.8561752988047808,-0.8565737051792829,-0.8569721115537848,-0.8573705179282869,-0.8577689243027888,-0.8581673306772908,-0.8585657370517928,-0.8589641434262948,-0.8593625498007968,-0.8597609561752988,-0.8601593625498007,-0.8605577689243028,-0.8609561752988047,-0.8613545816733068,-0.8617529880478088,-0.8621513944223107,-0.8625498007968128,-0.8629482071713147,-0.8633466135458168,-0.8637450199203187,-0.8641434262948208,-0.8645418326693227,-0.8649402390438247,-0.8653386454183267,-0.8657370517928287,-0.8661354581673307,-0.8665338645418327,-0.8669322709163346,-0.8673306772908367,-0.8677290836653386,-0.8681274900398407,-0.8685258964143426,-0.8689243027888446,-0.8693227091633466,-0.8697211155378486,-0.8701195219123506,-0.8705179282868526,-0.8709163346613545,-0.8713147410358566,-0.8717131474103585,-0.8721115537848606,-0.8725099601593626,-0.8729083665338645,-0.8733067729083666,-0.8737051792828685,-0.8741035856573706,-0.8745019920318725,-0.8749003984063745,-0.8752988047808765,-0.8756972111553785,-0.8760956175298805,-0.8764940239043825,-0.8768924302788844,-0.8772908366533865,-0.8776892430278884,-0.8780876494023905,-0.8784860557768924,-0.8788844621513944,-0.8792828685258964,-0.8796812749003984,-0.8800796812749004,-0.8804780876494024,-0.8808764940239043,-0.8812749003984064,-0.8816733067729083,-0.8820717131474104,-0.8824701195219123,-0.8828685258964143,-0.8832669322709163,-0.8836653386454183,-0.8840637450199204,-0.8844621513944223,-0.8848605577689242,-0.8852589641434263,-0.8856573705179283,-0.8860557768924303,-0.8864541832669323,-0.8868525896414342,-0.8872509960159363,-0.8876494023904382,-0.8880478087649403,-0.8884462151394422,-0.8888446215139443,-0.8892430278884462,-0.8896414342629482,-0.8900398406374502,-0.8904382470119522,-0.8908366533864542,-0.8912350597609562,-0.8916334661354581,-0.8920318725099602,-0.8924302788844621,-0.8928286852589642,-0.8932270916334661,-0.8936254980079681,-0.8940239043824701,-0.8944223107569721,-0.8948207171314742,-0.8952191235059761,-0.895617529880478,-0.8960159362549801,-0.896414342629482,-0.8968127490039841,-0.8972111553784861,-0.897609561752988,-0.8980079681274901,-0.898406374501992,-0.8988047808764941,-0.899203187250996,-0.899601593625498,-0.9,-0.900398406374502,-0.900796812749004,-0.901195219123506,-0.9015936254980079,-0.90199203187251,-0.9023904382470119,-0.902788844621514,-0.9031872509960159,-0.9035856573705179,-0.9039840637450199,-0.9043824701195219,-0.904780876494024,-0.9051792828685259,-0.9055776892430278,-0.9059760956175299,-0.9063745019920318,-0.9067729083665339,-0.9071713147410359,-0.9075697211155378,-0.9079681274900399,-0.9083665338645418,-0.9087649402390439,-0.9091633466135458,-0.9095617529880478,-0.9099601593625498,-0.9103585657370518,-0.9107569721115538,-0.9111553784860558,-0.9115537848605577,-0.9119521912350598,-0.9123505976095617,-0.9127490039840638,-0.9131474103585657,-0.9135458167330678,-0.9139442231075697,-0.9143426294820717,-0.9147410358565737,-0.9151394422310757,-0.9155378486055777,-0.9159362549800797,-0.9163346613545816,-0.9167330677290837,-0.9171314741035856,-0.9175298804780877,-0.9179282868525896,-0.9183266932270916,-0.9187250996015937,-0.9191235059760956,-0.9195219123505977,-0.9199203187250996,-0.9203187250996016,-0.9207171314741036,-0.9211155378486056,-0.9215139442231076,-0.9219123505976096,-0.9223107569721115,-0.9227091633466136,-0.9231075697211155,-0.9235059760956176,-0.9239043824701195,-0.9243027888446215,-0.9247011952191235,-0.9250996015936255,-0.9254980079681275,-0.9258964143426295,-0.9262948207171314,-0.9266932270916335,-0.9270916334661354,-0.9274900398406375,-0.9278884462151394,-0.9282868525896414,-0.9286852589641434,-0.9290836653386454,-0.9294820717131475,-0.9298804780876494,-0.9302788844621513,-0.9306772908366534,-0.9310756972111554,-0.9314741035856574,-0.9318725099601594,-0.9322709163346613,-0.9326693227091634,-0.9330677290836653,-0.9334661354581674,-0.9338645418326693,-0.9342629482071713,-0.9346613545816733,-0.9350597609561753,-0.9354581673306773,-0.9358565737051793,-0.9362549800796812,-0.9366533864541833,-0.9370517928286852,-0.9374501992031873,-0.9378486055776892,-0.9382470119521913,-0.9386454183266932,-0.9390438247011952,-0.9394422310756972,-0.9398406374501992,-0.9402390438247012,-0.9406374501992032,-0.9410358565737051,-0.9414342629482072,-0.9418326693227091,-0.9422310756972112,-0.9426294820717132,-0.9430278884462151,-0.9434262948207172,-0.9438247011952191,-0.9442231075697212,-0.9446215139442231,-0.9450199203187251,-0.9454183266932271,-0.9458167330677291,-0.9462151394422311,-0.9466135458167331,-0.947011952191235,-0.9474103585657371,-0.947808764940239,-0.9482071713147411,-0.948605577689243,-0.949003984063745,-0.949402390438247,-0.949800796812749,-0.950199203187251,-0.950597609561753,-0.9509960159362549,-0.951394422310757,-0.9517928286852589,-0.952191235059761,-0.952589641434263,-0.9529880478087649,-0.953386454183267,-0.9537848605577689,-0.954183266932271,-0.9545816733067729,-0.9549800796812749,-0.9553784860557769,-0.9557768924302789,-0.9561752988047809,-0.9565737051792829,-0.9569721115537848,-0.9573705179282869,-0.9577689243027888,-0.9581673306772909,-0.9585657370517928,-0.9589641434262948,-0.9593625498007968,-0.9597609561752988,-0.9601593625498008,-0.9605577689243028,-0.9609561752988047,-0.9613545816733068,-0.9617529880478087,-0.9621513944223108,-0.9625498007968127,-0.9629482071713148,-0.9633466135458167,-0.9637450199203187,-0.9641434262948207,-0.9645418326693227,-0.9649402390438248,-0.9653386454183267,-0.9657370517928286,-0.9661354581673307,-0.9665338645418327,-0.9669322709163347,-0.9673306772908367,-0.9677290836653386,-0.9681274900398407,-0.9685258964143426,-0.9689243027888447,-0.9693227091633466,-0.9697211155378486,-0.9701195219123506,-0.9705179282868526,-0.9709163346613546,-0.9713147410358566,-0.9717131474103585,-0.9721115537848606,-0.9725099601593625,-0.9729083665338646,-0.9733067729083665,-0.9737051792828685,-0.9741035856573705,-0.9745019920318725,-0.9749003984063745,-0.9752988047808765,-0.9756972111553784,-0.9760956175298805,-0.9764940239043824,-0.9768924302788845,-0.9772908366533865,-0.9776892430278884,-0.9780876494023905,-0.9784860557768924,-0.9788844621513945,-0.9792828685258964,-0.9796812749003984,-0.9800796812749004,-0.9804780876494024,-0.9808764940239044,-0.9812749003984064,-0.9816733067729083,-0.9820717131474104,-0.9824701195219123,-0.9828685258964144,-0.9832669322709163,-0.9836653386454183,-0.9840637450199203,-0.9844621513944223,-0.9848605577689243,-0.9852589641434263,-0.9856573705179282,-0.9860557768924303,-0.9864541832669322,-0.9868525896414343,-0.9872509960159362,-0.9876494023904383,-0.9880478087649402,-0.9884462151394422,-0.9888446215139443,-0.9892430278884462,-0.9896414342629483,-0.9900398406374502,-0.9904382470119522,-0.9908366533864542,-0.9912350597609562,-0.9916334661354582,-0.9920318725099602,-0.9924302788844621,-0.9928286852589642,-0.9932270916334661,-0.9936254980079682,-0.9940239043824701,-0.9944223107569721,-0.9948207171314741,-0.9952191235059761,-0.9956175298804781,-0.9960159362549801,-0.996414342629482,-0.9968127490039841,-0.997211155378486,-0.9976095617529881,-0.99800796812749,-0.998406374501992,-0.998804780876494,-0.999203187250996,-0.999601593625498,-1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_positive.json new file mode 100644 index 000000000000..be07fa4a05c8 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_positive.json @@ -0,0 +1 @@ +{"expected":[1.0475930126492587,1.0472042683349878,1.0468157929876352,1.0464275863331858,1.0460396480980116,1.045651978008868,1.045264575792896,1.0448774411776196,1.0444905738909456,1.0441039736611633,1.0437176402169426,1.0433315732873356,1.0429457726017728,1.0425602378900651,1.0421749688824014,1.041789965309348,1.04140522690185,1.0410207533912268,1.0406365445091748,1.040252599987765,1.039868919559443,1.039485502957028,1.0391023499137115,1.0387194601630576,1.0383368334390022,1.0379544694758516,1.0375723680082822,1.0371905287713403,1.0368089515004404,1.036427635931365,1.0360465818002647,1.035665788843656,1.0352852567984214,1.0349049854018093,1.0345249743914327,1.0341452235052673,1.0337657324816538,1.0333865010592946,1.0330075289772538,1.0326288159749573,1.0322503617921914,1.031872166169102,1.0314942288461946,1.0311165495643335,1.0307391280647402,1.030361964088994,1.0299850573790306,1.0296084076771415,1.029232014725974,1.0288558782685293,1.0284799980481631,1.0281043738085842,1.0277290052938537,1.0273538922483856,1.0269790344169443,1.0266044315446454,1.0262300833769549,1.0258559896596873,1.0254821501390066,1.0251085645614246,1.024735232673801,1.0243621542233419,1.0239893289575996,1.0236167566244727,1.023244436972204,1.0228723697493805,1.022500554704934,1.0221289915881382,1.0217576801486092,1.0213866201363064,1.0210158113015286,1.0206452533949162,1.0202749461674492,1.019904889370447,1.0195350827555676,1.0191655260748074,1.0187962190805,1.0184271615253155,1.0180583531622613,1.0176897937446796,1.0173214830262474,1.0169534207609767,1.0165856067032133,1.016218040607636,1.015850722229256,1.0154836513234171,1.0151168276457938,1.0147502509523918,1.0143839209995469,1.0140178375439244,1.013652000342519,1.013286409152653,1.0129210637319774,1.0125559638384702,1.0121911092304356,1.011826499666504,1.0114621349056319,1.0110980147070994,1.0107341388305124,1.0103705070357993,1.010007119083212,1.0096439747333252,1.0092810737470355,1.0089184158855604,1.0085560009104388,1.0081938285835295,1.007831898667011,1.0074702109233808,1.0071087651154558,1.0067475610063688,1.0063865983595723,1.0060258769388344,1.0056653965082387,1.0053051568321867,1.0049451576753927,1.004585398802887,1.0042258799800134,1.003866600972429,1.0035075615461044,1.0031487614673211,1.0027902005026743,1.002431878419069,1.0020737949837208,1.0017159499641568,1.001358343128212,1.0010009742440316,1.0006438430800684,1.0002869494050834,0.9999302929881454,0.9995738735986293,0.9992176910062168,0.9988617449808951,0.9985060352929567,0.9981505617129987,0.9977953240119218,0.9974403219609316,0.9970855553315355,0.9967310238955436,0.9963767274250684,0.9960226656925236,0.995668838470624,0.9953152455323845,0.9949618866511196,0.9946087616004441,0.9942558701542705,0.9939032120868104,0.9935507871725725,0.9931985951863631,0.9928466359032853,0.9924949090987379,0.9921434145484161,0.9917921520283096,0.9914411213147029,0.9910903221841749,0.9907397544135975,0.9903894177801363,0.9900393120612494,0.9896894370346866,0.9893397924784894,0.9889903781709906,0.9886411938908132,0.9882922394168704,0.987943514528365,0.9875950190047889,0.9872467526259219,0.9868987151718327,0.9865509064228768,0.9862033261596973,0.9858559741632233,0.9855088502146703,0.9851619540955391,0.9848152855876158,0.9844688444729707,0.9841226305339584,0.9837766435532168,0.9834308833136675,0.9830853495985136,0.9827400421912414,0.982394960875618,0.9820501054356919,0.9817054756557927,0.981361071320529,0.9810168922147902,0.9806729381237442,0.980329208832838,0.9799857041277965,0.9796424237946224,0.9792993676195962,0.9789565353892744,0.97861392689049,0.9782715419103523,0.9779293802362451,0.9775874416558282,0.9772457259570353,0.9769042329280734,0.976562962357424,0.9762219140338412,0.9758810877463514,0.9755404832842535,0.9752001004371177,0.9748599389947856,0.9745199987473692,0.9741802794852509,0.973840780999083,0.9735015030797869,0.9731624455185525,0.972823608106839,0.9724849906363727,0.9721465928991478,0.9718084146874253,0.9714704557937328,0.9711327160108643,0.970795195131879,0.9704578929501015,0.9701208092591214,0.969783943852792,0.9694472965252313,0.9691108670708202,0.9687746552842021,0.9684386609602842,0.9681028838942345,0.9677673238814831,0.9674319807177219,0.9670968541989027,0.9667619441212378,0.9664272502811997,0.9660927724755198,0.9657585105011893,0.965424464155457,0.9650906332358307,0.964757017540075,0.9644236168662127,0.964090431012523,0.9637574597775407,0.9634247029600583,0.9630921603591222,0.9627598317740348,0.9624277170043529,0.9620958158498873,0.9617641281107034,0.9614326535871189,0.9611013920797055,0.9607703433892867,0.9604395073169384,0.9601088836639885,0.9597784722320156,0.9594482728228496,0.9591182852385708,0.9587885092815093,0.9584589447542449,0.9581295914596066,0.9578004492006723,0.957471517780768,0.9571427970034679,0.9568142866725937,0.9564859865922144,0.9561578965666448,0.9558300164004475,0.9555023458984294,0.9551748848656442,0.9548476331073898,0.9545205904292094,0.95419375663689,0.9538671315364626,0.9535407149342019,0.9532145066366253,0.952888506450493,0.9525627141828074,0.9522371296408128,0.951911752631995,0.9515865829640807,0.9512616204450374,0.950936864883073,0.9506123160866348,0.95028797386441,0.9499638380253246,0.9496399083785434,0.9493161847334695,0.9489926668997435,0.9486693546872444,0.9483462479060876,0.9480233463666251,0.9477006498794458,0.947378158255374,0.9470558713054703,0.9467337888410293,0.9464119106735815,0.9460902366148913,0.9457687664769571,0.9454475000720111,0.9451264372125184,0.9448055777111778,0.9444849213809196,0.9441644680349064,0.943844217486533,0.9435241695494256,0.9432043240374407,0.9428846807646659,0.9425652395454188,0.9422460001942472,0.9419269625259277,0.9416081263554669,0.9412894914980993,0.9409710577692881,0.9406528249847247,0.9403347929603276,0.9400169615122429,0.9396993304568437,0.9393818996107294,0.9390646687907254,0.9387476378138826,0.9384308064974785,0.9381141746590144,0.9377977421162169,0.9374815086870366,0.9371654741896484,0.9368496384424503,0.9365340012640642,0.936218562473334,0.9359033218893271,0.935588279331332,0.9352734346188601,0.9349587875716433,0.9346443380096346,0.9343300857530089,0.9340160306221599,0.9337021724377024,0.9333885110204703,0.9330750461915167,0.9327617777721146,0.9324487055837543,0.9321358294481452,0.9318231491872144,0.9315106646231066,0.9311983755781834,0.9308862818750236,0.9305743833364224,0.930262679785391,0.9299511710451563,0.9296398569391616,0.9293287372910639,0.929017811924736,0.928707080664265,0.9283965433339515,0.9280861997583105,0.9277760497620702,0.9274660931701718,0.9271563298077694,0.9268467595002291,0.9265373820731296,0.9262281973522608,0.9259192051636245,0.9256104053334328,0.9253017976881094,0.9249933820542878,0.9246851582588115,0.9243771261287339,0.924069285491318,0.9237616361740354,0.9234541780045665,0.9231469108108002,0.9228398344208336,0.9225329486629711,0.922226253365725,0.9219197483578141,0.9216134334681643,0.9213073085259078,0.9210013733603829,0.920695627801134,0.92039007167791,0.920084704820666,0.919779527059561,0.9194745382249591,0.9191697381474281,0.91886512665774,0.9185607035868698,0.9182564687659964,0.9179524220265008,0.917648563199967,0.9173448921181809,0.9170414086131308,0.9167381125170061,0.9164350036621974,0.9161320818812971,0.9158293470070973,0.9155267988725905,0.9152244373109699,0.9149222621556277,0.9146202732401559,0.9143184703983454,0.9140168534641858,0.9137154222718653,0.9134141766557703,0.9131131164504848,0.9128122414907904,0.912511551611666,0.9122110466482874,0.9119107264360269,0.9116105908104533,0.9113106396073312,0.9110108726626207,0.9107112898124777,0.9104118908932529,0.9101126757414922,0.9098136441939351,0.9095147960875161,0.9092161312593633,0.908917649546798,0.9086193507873355,0.9083212348186835,0.9080233014787423,0.9077255506056051,0.9074279820375569,0.9071305956130741,0.9068333911708252,0.9065363685496695,0.9062395275886571,0.9059428681270292,0.9056463900042167,0.9053500930598408,0.9050539771337126,0.9047580420658322,0.904462287696389,0.9041667138657611,0.9038713204145156,0.9035761071834073,0.9032810740133793,0.9029862207455622,0.9026915472212742,0.9023970532820201,0.9021027387694923,0.9018086035255691,0.9015146473923151,0.9012208702119812,0.9009272718270034,0.9006338520800037,0.9003406108137888,0.9000475478713502,0.8997546630958643,0.8994619563306911,0.8991694274193753,0.898877076205645,0.8985849025334114,0.898292906246769,0.8980010871899954,0.8977094452075505,0.8974179801440767,0.897126691844398,0.8968355801535206,0.8965446449166316,0.8962538859791002,0.8959633031864754,0.8956728963844875,0.8953826654190472,0.8950926101362449,0.894802730382351,0.8945130260038152,0.894223496847267,0.8939341427595145,0.8936449635875442,0.893355959178522,0.8930671293797907,0.8927784740388721,0.8924899930034652,0.8922016861214461,0.8919135532408686,0.8916255942099627,0.8913378088771354,0.8910501970909699,0.890762758700225,0.890475493553836,0.8901884015009133,0.8899014823907423,0.8896147360727839,0.8893281623966732,0.88904176121222,0.8887555323694083,0.8884694757183959,0.8881835911095142,0.8878978783932681,0.8876123374203357,0.887326968041568,0.8870417701079882,0.8867567434707923,0.886471887981348,0.8861872034911955,0.8859026898520457,0.8856183469157816,0.8853341745344567,0.8850501725602954,0.8847663408456932,0.8844826792432148,0.8841991876055962,0.8839158657857425,0.883632713636728,0.8833497310117971,0.8830669177643627,0.8827842737480064,0.8825017988164786,0.8822194928236978,0.881937355623751,0.8816553870708921,0.881373587019543],"x":[0.8,0.800398406374502,0.8007968127490039,0.801195219123506,0.801593625498008,0.80199203187251,0.802390438247012,0.8027888446215139,0.803187250996016,0.8035856573705179,0.80398406374502,0.8043824701195219,0.8047808764940239,0.8051792828685259,0.8055776892430279,0.8059760956175299,0.8063745019920319,0.8067729083665338,0.8071713147410359,0.8075697211155378,0.8079681274900399,0.8083665338645418,0.8087649402390438,0.8091633466135458,0.8095617529880478,0.8099601593625498,0.8103585657370518,0.8107569721115537,0.8111553784860558,0.8115537848605577,0.8119521912350598,0.8123505976095617,0.8127490039840638,0.8131474103585657,0.8135458167330677,0.8139442231075698,0.8143426294820717,0.8147410358565738,0.8151394422310757,0.8155378486055777,0.8159362549800797,0.8163346613545817,0.8167330677290837,0.8171314741035857,0.8175298804780876,0.8179282868525897,0.8183266932270916,0.8187250996015937,0.8191235059760956,0.8195219123505976,0.8199203187250996,0.8203187250996016,0.8207171314741036,0.8211155378486056,0.8215139442231075,0.8219123505976096,0.8223107569721115,0.8227091633466136,0.8231075697211155,0.8235059760956175,0.8239043824701195,0.8243027888446215,0.8247011952191236,0.8250996015936255,0.8254980079681274,0.8258964143426295,0.8262948207171315,0.8266932270916335,0.8270916334661355,0.8274900398406374,0.8278884462151395,0.8282868525896414,0.8286852589641435,0.8290836653386454,0.8294820717131474,0.8298804780876494,0.8302788844621514,0.8306772908366534,0.8310756972111554,0.8314741035856573,0.8318725099601594,0.8322709163346613,0.8326693227091634,0.8330677290836653,0.8334661354581673,0.8338645418326693,0.8342629482071713,0.8346613545816733,0.8350597609561753,0.8354581673306772,0.8358565737051793,0.8362549800796812,0.8366533864541833,0.8370517928286852,0.8374501992031872,0.8378486055776893,0.8382470119521912,0.8386454183266933,0.8390438247011952,0.8394422310756973,0.8398406374501992,0.8402390438247012,0.8406374501992032,0.8410358565737052,0.8414342629482072,0.8418326693227092,0.8422310756972111,0.8426294820717132,0.8430278884462151,0.8434262948207172,0.8438247011952191,0.8442231075697211,0.8446215139442231,0.8450199203187251,0.8454183266932271,0.8458167330677291,0.846215139442231,0.8466135458167331,0.847011952191235,0.8474103585657371,0.847808764940239,0.848207171314741,0.848605577689243,0.849003984063745,0.8494023904382471,0.849800796812749,0.850199203187251,0.850597609561753,0.850996015936255,0.851394422310757,0.851792828685259,0.8521912350597609,0.852589641434263,0.8529880478087649,0.853386454183267,0.8537848605577689,0.8541832669322709,0.8545816733067729,0.8549800796812749,0.8553784860557769,0.8557768924302789,0.8561752988047808,0.8565737051792829,0.8569721115537848,0.8573705179282869,0.8577689243027888,0.8581673306772908,0.8585657370517928,0.8589641434262948,0.8593625498007968,0.8597609561752988,0.8601593625498007,0.8605577689243028,0.8609561752988047,0.8613545816733068,0.8617529880478088,0.8621513944223107,0.8625498007968128,0.8629482071713147,0.8633466135458168,0.8637450199203187,0.8641434262948208,0.8645418326693227,0.8649402390438247,0.8653386454183267,0.8657370517928287,0.8661354581673307,0.8665338645418327,0.8669322709163346,0.8673306772908367,0.8677290836653386,0.8681274900398407,0.8685258964143426,0.8689243027888446,0.8693227091633466,0.8697211155378486,0.8701195219123506,0.8705179282868526,0.8709163346613545,0.8713147410358566,0.8717131474103585,0.8721115537848606,0.8725099601593626,0.8729083665338645,0.8733067729083666,0.8737051792828685,0.8741035856573706,0.8745019920318725,0.8749003984063745,0.8752988047808765,0.8756972111553785,0.8760956175298805,0.8764940239043825,0.8768924302788844,0.8772908366533865,0.8776892430278884,0.8780876494023905,0.8784860557768924,0.8788844621513944,0.8792828685258964,0.8796812749003984,0.8800796812749004,0.8804780876494024,0.8808764940239043,0.8812749003984064,0.8816733067729083,0.8820717131474104,0.8824701195219123,0.8828685258964143,0.8832669322709163,0.8836653386454183,0.8840637450199204,0.8844621513944223,0.8848605577689242,0.8852589641434263,0.8856573705179283,0.8860557768924303,0.8864541832669323,0.8868525896414342,0.8872509960159363,0.8876494023904382,0.8880478087649403,0.8884462151394422,0.8888446215139443,0.8892430278884462,0.8896414342629482,0.8900398406374502,0.8904382470119522,0.8908366533864542,0.8912350597609562,0.8916334661354581,0.8920318725099602,0.8924302788844621,0.8928286852589642,0.8932270916334661,0.8936254980079681,0.8940239043824701,0.8944223107569721,0.8948207171314742,0.8952191235059761,0.895617529880478,0.8960159362549801,0.896414342629482,0.8968127490039841,0.8972111553784861,0.897609561752988,0.8980079681274901,0.898406374501992,0.8988047808764941,0.899203187250996,0.899601593625498,0.9,0.900398406374502,0.900796812749004,0.901195219123506,0.9015936254980079,0.90199203187251,0.9023904382470119,0.902788844621514,0.9031872509960159,0.9035856573705179,0.9039840637450199,0.9043824701195219,0.904780876494024,0.9051792828685259,0.9055776892430278,0.9059760956175299,0.9063745019920318,0.9067729083665339,0.9071713147410359,0.9075697211155378,0.9079681274900399,0.9083665338645418,0.9087649402390439,0.9091633466135458,0.9095617529880478,0.9099601593625498,0.9103585657370518,0.9107569721115538,0.9111553784860558,0.9115537848605577,0.9119521912350598,0.9123505976095617,0.9127490039840638,0.9131474103585657,0.9135458167330678,0.9139442231075697,0.9143426294820717,0.9147410358565737,0.9151394422310757,0.9155378486055777,0.9159362549800797,0.9163346613545816,0.9167330677290837,0.9171314741035856,0.9175298804780877,0.9179282868525896,0.9183266932270916,0.9187250996015937,0.9191235059760956,0.9195219123505977,0.9199203187250996,0.9203187250996016,0.9207171314741036,0.9211155378486056,0.9215139442231076,0.9219123505976096,0.9223107569721115,0.9227091633466136,0.9231075697211155,0.9235059760956176,0.9239043824701195,0.9243027888446215,0.9247011952191235,0.9250996015936255,0.9254980079681275,0.9258964143426295,0.9262948207171314,0.9266932270916335,0.9270916334661354,0.9274900398406375,0.9278884462151394,0.9282868525896414,0.9286852589641434,0.9290836653386454,0.9294820717131475,0.9298804780876494,0.9302788844621513,0.9306772908366534,0.9310756972111554,0.9314741035856574,0.9318725099601594,0.9322709163346613,0.9326693227091634,0.9330677290836653,0.9334661354581674,0.9338645418326693,0.9342629482071713,0.9346613545816733,0.9350597609561753,0.9354581673306773,0.9358565737051793,0.9362549800796812,0.9366533864541833,0.9370517928286852,0.9374501992031873,0.9378486055776892,0.9382470119521913,0.9386454183266932,0.9390438247011952,0.9394422310756972,0.9398406374501992,0.9402390438247012,0.9406374501992032,0.9410358565737051,0.9414342629482072,0.9418326693227091,0.9422310756972112,0.9426294820717132,0.9430278884462151,0.9434262948207172,0.9438247011952191,0.9442231075697212,0.9446215139442231,0.9450199203187251,0.9454183266932271,0.9458167330677291,0.9462151394422311,0.9466135458167331,0.947011952191235,0.9474103585657371,0.947808764940239,0.9482071713147411,0.948605577689243,0.949003984063745,0.949402390438247,0.949800796812749,0.950199203187251,0.950597609561753,0.9509960159362549,0.951394422310757,0.9517928286852589,0.952191235059761,0.952589641434263,0.9529880478087649,0.953386454183267,0.9537848605577689,0.954183266932271,0.9545816733067729,0.9549800796812749,0.9553784860557769,0.9557768924302789,0.9561752988047809,0.9565737051792829,0.9569721115537848,0.9573705179282869,0.9577689243027888,0.9581673306772909,0.9585657370517928,0.9589641434262948,0.9593625498007968,0.9597609561752988,0.9601593625498008,0.9605577689243028,0.9609561752988047,0.9613545816733068,0.9617529880478087,0.9621513944223108,0.9625498007968127,0.9629482071713148,0.9633466135458167,0.9637450199203187,0.9641434262948207,0.9645418326693227,0.9649402390438248,0.9653386454183267,0.9657370517928286,0.9661354581673307,0.9665338645418327,0.9669322709163347,0.9673306772908367,0.9677290836653386,0.9681274900398407,0.9685258964143426,0.9689243027888447,0.9693227091633466,0.9697211155378486,0.9701195219123506,0.9705179282868526,0.9709163346613546,0.9713147410358566,0.9717131474103585,0.9721115537848606,0.9725099601593625,0.9729083665338646,0.9733067729083665,0.9737051792828685,0.9741035856573705,0.9745019920318725,0.9749003984063745,0.9752988047808765,0.9756972111553784,0.9760956175298805,0.9764940239043824,0.9768924302788845,0.9772908366533865,0.9776892430278884,0.9780876494023905,0.9784860557768924,0.9788844621513945,0.9792828685258964,0.9796812749003984,0.9800796812749004,0.9804780876494024,0.9808764940239044,0.9812749003984064,0.9816733067729083,0.9820717131474104,0.9824701195219123,0.9828685258964144,0.9832669322709163,0.9836653386454183,0.9840637450199203,0.9844621513944223,0.9848605577689243,0.9852589641434263,0.9856573705179282,0.9860557768924303,0.9864541832669322,0.9868525896414343,0.9872509960159362,0.9876494023904383,0.9880478087649402,0.9884462151394422,0.9888446215139443,0.9892430278884462,0.9896414342629483,0.9900398406374502,0.9904382470119522,0.9908366533864542,0.9912350597609562,0.9916334661354582,0.9920318725099602,0.9924302788844621,0.9928286852589642,0.9932270916334661,0.9936254980079682,0.9940239043824701,0.9944223107569721,0.9948207171314741,0.9952191235059761,0.9956175298804781,0.9960159362549801,0.996414342629482,0.9968127490039841,0.997211155378486,0.9976095617529881,0.99800796812749,0.998406374501992,0.998804780876494,0.999203187250996,0.999601593625498,1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/smaller.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/smaller.json new file mode 100644 index 000000000000..b06547e25f72 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/smaller.json @@ -0,0 +1 @@ +{"expected":[-1.0475930126492587,-1.050712682982123,-1.0538497262810698,-1.0570042855481372,-1.0601765054206598,-1.0633665321965549,-1.0665745138601146,-1.069800600108321,-1.0730449423776909,-1.076307693871669,-1.0795890095885794,-1.0828890463501508,-1.086207962830632,-1.0895459195865074,-1.0929030790868344,-1.0962796057442115,-1.0996756659464004,-1.1030914280886135,-1.1065270626064847,-1.1099827420097463,-1.1134586409166232,-1.1169549360889668,-1.1204718064681511,-1.1240094332117447,-1.127567999730982,-1.131147691729059,-1.1347486972402698,-1.1383712066700087,-1.142015412835662,-1.1456815110084138,-1.1493696989559892,-1.1530801769863606,-1.1568131479924475,-1.1605688174978306,-1.1643473937035136,-1.1681490875357614,-1.1719741126950416,-1.1758226857061038,-1.179695025969228,-1.183591355812675,-1.1875119005463703,-1.191456888516865,-1.1954265511636004,-1.1994211230765215,-1.203440842055075,-1.2074859491686345,-1.2115566888183915,-1.2156533088007604,-1.2197760603723382,-1.2239251983164667,-1.2281009810114456,-1.2323036705004458,-1.236533532563175,-1.2407908367893474,-1.2450758566540145,-1.249388869594812,-1.2537301570911854,-1.2581000047456496,-1.262498702367156,-1.2669265440566195,-1.2713838282946874,-1.275870858031811,-1.2803879407806988,-1.2849353887112231,-1.2895135187478657,-1.294122652669777,-1.2987631172135379,-1.3034352441787138,-1.3081393705362876,-1.3128758385400723,-1.3176449958411993,-1.3224471956057846,-1.327282796635882,-1.3321521634938303,-1.337055666630116,-1.3419936825148653,-1.3469665937730917,-1.3519747893238334,-1.3570186645233069,-1.3620986213122275,-1.3672150683674316,-1.3723684212579652,-1.377559102605784,-1.3827875422512423,-1.3880541774235347,-1.3933594529162727,-1.3987038212683809,-1.4040877429505136,-1.4095116865571848,-1.4149761290048337,-1.4204815557360393,-1.4260284609301177,-1.4316173477203453,-1.4372487284180535,-1.4429231247438616,-1.4486410680663229,-1.4544030996482675,-1.4602097709011446,-1.466061643647673,-1.4719592903931373,-1.4779032946056583,-1.4838942510058106,-1.489932765865954,-1.4960194573196761,-1.5021549556817557,-1.5083399037790812,-1.5145749572929765,-1.5208607851134044,-1.5271980697055525,-1.5335875074893164,-1.5400298092322338,-1.5465257004564403,-1.5530759218602537,-1.559681229755021,-1.5663423965178944,-1.573060211061235,-1.5798354793193878,-1.5866690247535986,-1.5935616888758881,-1.6005143317927486,-1.6075278327695617,-1.6146030908166964,-1.62174102529829,-1.6289425765647698,-1.6362087066102415,-1.6435403997559153,-1.6509386633608214,-1.6584045285611297,-1.6659390510394652,-1.6735433118256844,-1.6812184181306762,-1.6889655042148244,-1.6967857322928765,-1.704680293477065,-1.7126504087604317,-1.720697330042429,-1.728822341198995,-1.7370267591994346,-1.7453119352725794,-1.7536792561248595,-1.7621301452130778,-1.7706660640748606,-1.779288513719947,-1.7879990360856772,-1.796799215560272,-1.8056906805777135,-1.8146751052883139,-1.8237542113093035,-1.8329297695600908,-1.8422036021871446,-1.851577584583801,-1.8610536475106614,-1.8706337793226486,-1.8803200283092214,-1.8901145051547088,-1.9000193855262368,-1.9100369127972634,-1.9201694009153352,-1.9304192374233167,-1.9407888866440572,-1.9512808930392047,-1.9618978847537207,-1.972642577358542,-1.983517777804828,-1.9945263886043028,-2.0056714122513735,-2.016955955904001,-2.0283832363416896,-2.0399565852205135,-2.0516794546467865,-2.0635554230928377,-2.0755882016803837,-2.0877816408592564,-2.1001397375117006,-2.1126666425151903,-2.1253666687997366,-2.1382442999389815,-2.151304199318072,-2.164551219925413,-2.17799041481992,-2.1916270483304747,-2.2054666080499064,-2.2195148176920854,-2.233777650887757,-2.248261346002553,-2.26297242206943,-2.277917695937627,-2.2931043007513177,-2.308539705883625,-2.324231738465722,-2.3401886066666675,-2.3564189248976164,-2.3729317411345057,-2.389736566576514,-2.406843407884078,-2.4242628022704427,-2.4420058557552893,-2.4600842849286226,-2.478510462618673,-2.4972974679100637,-2.51645914101918,-2.536010143603957,-2.5559660251669443,-2.57634329630564,-2.597159509675202,-2.618433349658955,-2.6401847318952565,-2.6624349139900443,-2.6852066189583574,-2.7085241731924,-2.732413661057043,-2.756903098576883,-2.7820226291158683,-2.807804744478142,-2.834284535499068,-2.861499976976091,-2.8894922527458418,-2.9183061278925857,-2.9479903765334856,-2.9785982754462124,-3.01018817608706,-3.042824170429464,-3.0765768697167064,-3.1115243199157074,-3.1477530837184227,-3.1853595268280137,-3.224451356635561,-3.2651494751510466,-3.3075902264993444,-3.3519281443061937,-3.398339338633899,-3.4470257098804122,-3.498220244433146,-3.5521937434361215,-3.6092634768305305,-3.6698044640515506,-3.7342644002456393,-3.8031837400156534,-3.8772232370258037,-3.957202529247597,-4.044155553366893,-4.139412445542508,-4.244724741243645,-4.362464626815531,-4.4959579411973225,-4.650075616362258,-4.832369243581718,-5.0554899416852015,-5.343154238334272,-5.748606648860114,-6.441746210638492,null,6.441746210638492,5.748606648860114,5.343154238334272,5.0554899416852015,4.832369243581718,4.650075616362258,4.4959579411973225,4.362464626815531,4.244724741243645,4.139412445542508,4.044155553366893,3.957202529247597,3.8772232370258037,3.8031837400156534,3.7342644002456393,3.6698044640515506,3.6092634768305305,3.5521937434361215,3.498220244433146,3.4470257098804122,3.398339338633899,3.3519281443061937,3.3075902264993444,3.2651494751510466,3.224451356635561,3.1853595268280137,3.1477530837184227,3.1115243199157074,3.0765768697167064,3.042824170429464,3.01018817608706,2.9785982754462124,2.9479903765334856,2.9183061278925857,2.8894922527458418,2.861499976976091,2.834284535499068,2.807804744478142,2.7820226291158683,2.756903098576883,2.732413661057043,2.7085241731924,2.6852066189583574,2.6624349139900443,2.6401847318952565,2.618433349658955,2.597159509675202,2.57634329630564,2.5559660251669443,2.536010143603957,2.51645914101918,2.4972974679100637,2.478510462618673,2.4600842849286226,2.4420058557552893,2.4242628022704427,2.406843407884078,2.389736566576514,2.3729317411345057,2.3564189248976164,2.3401886066666675,2.324231738465722,2.308539705883625,2.2931043007513177,2.277917695937627,2.26297242206943,2.248261346002553,2.233777650887757,2.2195148176920854,2.2054666080499064,2.1916270483304747,2.17799041481992,2.164551219925413,2.151304199318072,2.1382442999389815,2.1253666687997366,2.1126666425151903,2.1001397375117006,2.0877816408592564,2.0755882016803837,2.0635554230928377,2.0516794546467865,2.0399565852205135,2.0283832363416896,2.016955955904001,2.0056714122513735,1.9945263886043028,1.983517777804828,1.972642577358542,1.9618978847537207,1.9512808930392047,1.9407888866440572,1.9304192374233167,1.9201694009153352,1.9100369127972634,1.9000193855262368,1.8901145051547088,1.8803200283092214,1.8706337793226486,1.8610536475106614,1.851577584583801,1.8422036021871446,1.8329297695600908,1.8237542113093035,1.8146751052883139,1.8056906805777135,1.796799215560272,1.7879990360856772,1.779288513719947,1.7706660640748606,1.7621301452130778,1.7536792561248595,1.7453119352725794,1.7370267591994346,1.728822341198995,1.720697330042429,1.7126504087604317,1.704680293477065,1.6967857322928765,1.6889655042148244,1.6812184181306762,1.6735433118256844,1.6659390510394652,1.6584045285611297,1.6509386633608214,1.6435403997559153,1.6362087066102415,1.6289425765647698,1.62174102529829,1.6146030908166964,1.6075278327695617,1.6005143317927486,1.5935616888758881,1.5866690247535986,1.5798354793193878,1.573060211061235,1.5663423965178944,1.559681229755021,1.5530759218602537,1.5465257004564403,1.5400298092322338,1.5335875074893164,1.5271980697055525,1.5208607851134044,1.5145749572929765,1.5083399037790812,1.5021549556817557,1.4960194573196761,1.489932765865954,1.4838942510058106,1.4779032946056583,1.4719592903931373,1.466061643647673,1.4602097709011446,1.4544030996482675,1.4486410680663229,1.4429231247438616,1.4372487284180535,1.4316173477203453,1.4260284609301177,1.4204815557360393,1.4149761290048337,1.4095116865571848,1.4040877429505136,1.3987038212683809,1.3933594529162727,1.3880541774235347,1.3827875422512423,1.377559102605784,1.3723684212579652,1.3672150683674316,1.3620986213122275,1.3570186645233069,1.3519747893238334,1.3469665937730917,1.3419936825148653,1.337055666630116,1.3321521634938303,1.327282796635882,1.3224471956057846,1.3176449958411993,1.3128758385400723,1.3081393705362876,1.3034352441787138,1.2987631172135379,1.294122652669777,1.2895135187478657,1.2849353887112231,1.2803879407806988,1.275870858031811,1.2713838282946874,1.2669265440566195,1.262498702367156,1.2581000047456496,1.2537301570911854,1.249388869594812,1.2450758566540145,1.2407908367893474,1.236533532563175,1.2323036705004458,1.2281009810114456,1.2239251983164667,1.2197760603723382,1.2156533088007604,1.2115566888183915,1.2074859491686345,1.203440842055075,1.1994211230765215,1.1954265511636004,1.191456888516865,1.1875119005463703,1.183591355812675,1.179695025969228,1.1758226857061038,1.1719741126950416,1.1681490875357614,1.1643473937035136,1.1605688174978306,1.1568131479924475,1.1530801769863606,1.1493696989559892,1.1456815110084138,1.142015412835662,1.1383712066700087,1.1347486972402698,1.131147691729059,1.127567999730982,1.1240094332117447,1.1204718064681511,1.1169549360889668,1.1134586409166232,1.1099827420097463,1.1065270626064847,1.1030914280886135,1.0996756659464004,1.0962796057442115,1.0929030790868344,1.0895459195865074,1.086207962830632,1.0828890463501508,1.0795890095885794,1.076307693871669,1.0730449423776909,1.069800600108321,1.0665745138601146,1.0633665321965549,1.0601765054206598,1.0570042855481372,1.0538497262810698,1.050712682982123,1.0475930126492587],"x":[-0.8,-0.796812749003984,-0.7936254980079681,-0.7904382470119522,-0.7872509960159363,-0.7840637450199203,-0.7808764940239044,-0.7776892430278884,-0.7745019920318725,-0.7713147410358566,-0.7681274900398406,-0.7649402390438247,-0.7617529880478088,-0.7585657370517929,-0.7553784860557768,-0.7521912350597609,-0.749003984063745,-0.7458167330677291,-0.7426294820717132,-0.7394422310756972,-0.7362549800796813,-0.7330677290836654,-0.7298804780876494,-0.7266932270916334,-0.7235059760956175,-0.7203187250996016,-0.7171314741035857,-0.7139442231075698,-0.7107569721115538,-0.7075697211155378,-0.7043824701195219,-0.701195219123506,-0.69800796812749,-0.6948207171314741,-0.6916334661354582,-0.6884462151394423,-0.6852589641434262,-0.6820717131474103,-0.6788844621513944,-0.6756972111553785,-0.6725099601593626,-0.6693227091633466,-0.6661354581673307,-0.6629482071713148,-0.6597609561752988,-0.6565737051792828,-0.6533864541832669,-0.650199203187251,-0.6470119521912351,-0.6438247011952192,-0.6406374501992032,-0.6374501992031872,-0.6342629482071713,-0.6310756972111554,-0.6278884462151394,-0.6247011952191235,-0.6215139442231076,-0.6183266932270917,-0.6151394422310758,-0.6119521912350597,-0.6087649402390438,-0.6055776892430279,-0.602390438247012,-0.599203187250996,-0.5960159362549801,-0.5928286852589641,-0.5896414342629482,-0.5864541832669322,-0.5832669322709163,-0.5800796812749004,-0.5768924302788845,-0.5737051792828686,-0.5705179282868525,-0.5673306772908366,-0.5641434262948207,-0.5609561752988048,-0.5577689243027888,-0.5545816733067729,-0.551394422310757,-0.5482071713147411,-0.5450199203187251,-0.5418326693227091,-0.5386454183266932,-0.5354581673306773,-0.5322709163346614,-0.5290836653386454,-0.5258964143426295,-0.5227091633466135,-0.5195219123505976,-0.5163346613545817,-0.5131474103585657,-0.5099601593625498,-0.5067729083665339,-0.503585657370518,-0.500398406374502,-0.49721115537848604,-0.4940239043824701,-0.49083665338645416,-0.48764940239043825,-0.48446215139442234,-0.48127490039840637,-0.47808764940239046,-0.4749003984063745,-0.4717131474103586,-0.4685258964143426,-0.4653386454183267,-0.46215139442231074,-0.4589641434262948,-0.45577689243027886,-0.45258964143426295,-0.44940239043824703,-0.44621513944223107,-0.44302788844621516,-0.4398406374501992,-0.4366533864541833,-0.4334661354581673,-0.4302788844621514,-0.42709163346613543,-0.4239043824701195,-0.4207171314741036,-0.41752988047808764,-0.41434262948207173,-0.41115537848605577,-0.40796812749003986,-0.4047808764940239,-0.401593625498008,-0.398406374501992,-0.3952191235059761,-0.39203187250996013,-0.3888446215139442,-0.3856573705179283,-0.38247011952191234,-0.37928286852589643,-0.37609561752988047,-0.37290836653386455,-0.3697211155378486,-0.3665338645418327,-0.3633466135458167,-0.3601593625498008,-0.3569721115537849,-0.3537848605577689,-0.350597609561753,-0.34741035856573704,-0.34422310756972113,-0.34103585657370517,-0.33784860557768925,-0.3346613545816733,-0.3314741035856574,-0.3282868525896414,-0.3250996015936255,-0.3219123505976096,-0.3187250996015936,-0.3155378486055777,-0.31235059760956174,-0.30916334661354583,-0.30597609561752986,-0.30278884462151395,-0.299601593625498,-0.2964143426294821,-0.2932270916334661,-0.2900398406374502,-0.2868525896414343,-0.2836653386454183,-0.2804780876494024,-0.27729083665338644,-0.27410358565737053,-0.27091633466135456,-0.26772908366533865,-0.2645418326693227,-0.2613545816733068,-0.25816733067729086,-0.2549800796812749,-0.251792828685259,-0.24860557768924302,-0.24541832669322708,-0.24223107569721117,-0.23904382470119523,-0.2358565737051793,-0.23266932270916335,-0.2294820717131474,-0.22629482071713147,-0.22310756972111553,-0.2199203187250996,-0.21673306772908366,-0.21354581673306772,-0.2103585657370518,-0.20717131474103587,-0.20398406374501993,-0.200796812749004,-0.19760956175298805,-0.1944223107569721,-0.19123505976095617,-0.18804780876494023,-0.1848605577689243,-0.18167330677290836,-0.17848605577689244,-0.1752988047808765,-0.17211155378486057,-0.16892430278884463,-0.1657370517928287,-0.16254980079681275,-0.1593625498007968,-0.15617529880478087,-0.15298804780876493,-0.149800796812749,-0.14661354581673305,-0.14342629482071714,-0.1402390438247012,-0.13705179282868526,-0.13386454183266933,-0.1306772908366534,-0.12749003984063745,-0.12430278884462151,-0.12111553784860558,-0.11792828685258964,-0.1147410358565737,-0.11155378486055777,-0.10836653386454183,-0.1051792828685259,-0.10199203187250996,-0.09880478087649402,-0.09561752988047809,-0.09243027888446215,-0.08924302788844622,-0.08605577689243028,-0.08286852589641434,-0.0796812749003984,-0.07649402390438247,-0.07330677290836653,-0.0701195219123506,-0.06693227091633466,-0.06374501992031872,-0.06055776892430279,-0.05737051792828685,-0.054183266932270914,-0.05099601593625498,-0.04780876494023904,-0.04462151394422311,-0.04143426294820717,-0.03824701195219123,-0.0350597609561753,-0.03187250996015936,-0.028685258964143426,-0.02549800796812749,-0.022310756972111555,-0.019123505976095617,-0.01593625498007968,-0.012749003984063745,-0.009561752988047808,-0.006374501992031873,-0.0031872509960159364,0.0,0.0031872509960159364,0.006374501992031873,0.009561752988047808,0.012749003984063745,0.01593625498007968,0.019123505976095617,0.022310756972111555,0.02549800796812749,0.028685258964143426,0.03187250996015936,0.0350597609561753,0.03824701195219123,0.04143426294820717,0.04462151394422311,0.04780876494023904,0.05099601593625498,0.054183266932270914,0.05737051792828685,0.06055776892430279,0.06374501992031872,0.06693227091633466,0.0701195219123506,0.07330677290836653,0.07649402390438247,0.0796812749003984,0.08286852589641434,0.08605577689243028,0.08924302788844622,0.09243027888446215,0.09561752988047809,0.09880478087649402,0.10199203187250996,0.1051792828685259,0.10836653386454183,0.11155378486055777,0.1147410358565737,0.11792828685258964,0.12111553784860558,0.12430278884462151,0.12749003984063745,0.1306772908366534,0.13386454183266933,0.13705179282868526,0.1402390438247012,0.14342629482071714,0.14661354581673305,0.149800796812749,0.15298804780876493,0.15617529880478087,0.1593625498007968,0.16254980079681275,0.1657370517928287,0.16892430278884463,0.17211155378486057,0.1752988047808765,0.17848605577689244,0.18167330677290836,0.1848605577689243,0.18804780876494023,0.19123505976095617,0.1944223107569721,0.19760956175298805,0.200796812749004,0.20398406374501993,0.20717131474103587,0.2103585657370518,0.21354581673306772,0.21673306772908366,0.2199203187250996,0.22310756972111553,0.22629482071713147,0.2294820717131474,0.23266932270916335,0.2358565737051793,0.23904382470119523,0.24223107569721117,0.24541832669322708,0.24860557768924302,0.251792828685259,0.2549800796812749,0.25816733067729086,0.2613545816733068,0.2645418326693227,0.26772908366533865,0.27091633466135456,0.27410358565737053,0.27729083665338644,0.2804780876494024,0.2836653386454183,0.2868525896414343,0.2900398406374502,0.2932270916334661,0.2964143426294821,0.299601593625498,0.30278884462151395,0.30597609561752986,0.30916334661354583,0.31235059760956174,0.3155378486055777,0.3187250996015936,0.3219123505976096,0.3250996015936255,0.3282868525896414,0.3314741035856574,0.3346613545816733,0.33784860557768925,0.34103585657370517,0.34422310756972113,0.34741035856573704,0.350597609561753,0.3537848605577689,0.3569721115537849,0.3601593625498008,0.3633466135458167,0.3665338645418327,0.3697211155378486,0.37290836653386455,0.37609561752988047,0.37928286852589643,0.38247011952191234,0.3856573705179283,0.3888446215139442,0.39203187250996013,0.3952191235059761,0.398406374501992,0.401593625498008,0.4047808764940239,0.40796812749003986,0.41115537848605577,0.41434262948207173,0.41752988047808764,0.4207171314741036,0.4239043824701195,0.42709163346613543,0.4302788844621514,0.4334661354581673,0.4366533864541833,0.4398406374501992,0.44302788844621516,0.44621513944223107,0.44940239043824703,0.45258964143426295,0.45577689243027886,0.4589641434262948,0.46215139442231074,0.4653386454183267,0.4685258964143426,0.4717131474103586,0.4749003984063745,0.47808764940239046,0.48127490039840637,0.48446215139442234,0.48764940239043825,0.49083665338645416,0.4940239043824701,0.49721115537848604,0.500398406374502,0.503585657370518,0.5067729083665339,0.5099601593625498,0.5131474103585657,0.5163346613545817,0.5195219123505976,0.5227091633466135,0.5258964143426295,0.5290836653386454,0.5322709163346614,0.5354581673306773,0.5386454183266932,0.5418326693227091,0.5450199203187251,0.5482071713147411,0.551394422310757,0.5545816733067729,0.5577689243027888,0.5609561752988048,0.5641434262948207,0.5673306772908366,0.5705179282868525,0.5737051792828686,0.5768924302788845,0.5800796812749004,0.5832669322709163,0.5864541832669322,0.5896414342629482,0.5928286852589641,0.5960159362549801,0.599203187250996,0.602390438247012,0.6055776892430279,0.6087649402390438,0.6119521912350597,0.6151394422310758,0.6183266932270917,0.6215139442231076,0.6247011952191235,0.6278884462151394,0.6310756972111554,0.6342629482071713,0.6374501992031872,0.6406374501992032,0.6438247011952192,0.6470119521912351,0.650199203187251,0.6533864541832669,0.6565737051792828,0.6597609561752988,0.6629482071713148,0.6661354581673307,0.6693227091633466,0.6725099601593626,0.6756972111553785,0.6788844621513944,0.6820717131474103,0.6852589641434262,0.6884462151394423,0.6916334661354582,0.6948207171314741,0.69800796812749,0.701195219123506,0.7043824701195219,0.7075697211155378,0.7107569721115538,0.7139442231075698,0.7171314741035857,0.7203187250996016,0.7235059760956175,0.7266932270916334,0.7298804780876494,0.7330677290836654,0.7362549800796813,0.7394422310756972,0.7426294820717132,0.7458167330677291,0.749003984063745,0.7521912350597609,0.7553784860557768,0.7585657370517929,0.7617529880478088,0.7649402390438247,0.7681274900398406,0.7713147410358566,0.7745019920318725,0.7776892430278884,0.7808764940239044,0.7840637450199203,0.7872509960159363,0.7904382470119522,0.7936254980079681,0.796812749003984,0.8]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_negative.json new file mode 100644 index 000000000000..7b46592775a9 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_negative.json @@ -0,0 +1 @@ +{"expected":[-691.4686750787736,-691.4706690973605,-691.4726671000032,-691.4746691026537,-691.4766751213604,-691.4786851722681,-691.4806992716194,-691.4827174357553,-691.4847396811155,-691.4867660242401,-691.4887964817698,-691.4908310704468,-691.4928698071158,-691.4949127087247,-691.4969597923252,-691.4990110750747,-691.5010665742357,-691.5031263071774,-691.5051902913768,-691.5072585444194,-691.5093310839998,-691.511407927923,-691.513489094105,-691.5155746005743,-691.5176644654717,-691.5197587070529,-691.5218573436877,-691.5239603938622,-691.5260678761796,-691.5281798093603,-691.5302962122441,-691.5324171037907,-691.5345425030804,-691.5366724293154,-691.5388069018212,-691.540945940047,-691.5430895635672,-691.5452377920823,-691.5473906454201,-691.5495481435368,-691.5517103065177,-691.5538771545793,-691.5560487080692,-691.558224987468,-691.5604060133904,-691.5625918065864,-691.5647823879422,-691.5669777784814,-691.5691779993667,-691.5713830719006,-691.573593017527,-691.5758078578318,-691.5780276145454,-691.5802523095426,-691.582481964845,-691.5847166026214,-691.5869562451896,-691.5892009150182,-691.5914506347268,-691.5937054270884,-691.5959653150302,-691.5982303216352,-691.600500470144,-691.602775783955,-691.6050562866277,-691.6073420018823,-691.6096329536025,-691.6119291658364,-691.6142306627981,-691.6165374688693,-691.6188496086008,-691.6211671067142,-691.6234899881033,-691.6258182778357,-691.6281520011546,-691.6304911834802,-691.6328358504119,-691.6351860277291,-691.6375417413938,-691.6399030175514,-691.6422698825336,-691.6446423628589,-691.6470204852355,-691.6494042765623,-691.651793763931,-691.6541889746281,-691.6565899361367,-691.6589966761383,-691.6614092225144,-691.6638276033493,-691.6662518469313,-691.668681981755,-691.671118036523,-691.6735600401487,-691.6760080217573,-691.6784620106886,-691.680922036499,-691.6833881289638,-691.6858603180784,-691.6883386340621,-691.6908231073587,-691.69331376864,-691.6958106488073,-691.698313778994,-691.7008231905678,-691.7033389151333,-691.7058609845341,-691.7083894308554,-691.7109242864262,-691.7134655838225,-691.7160133558688,-691.7185676356411,-691.7211284564698,-691.723695851942,-691.7262698559039,-691.728850502464,-691.7314378259953,-691.7340318611385,-691.7366326428047,-691.7392402061777,-691.7418545867174,-691.7444758201627,-691.7471039425344,-691.7497389901375,-691.7523809995653,-691.7550300077016,-691.7576860517244,-691.7603491691083,-691.7630193976283,-691.765696775363,-691.7683813406976,-691.7710731323269,-691.7737721892595,-691.7764785508205,-691.779192256655,-691.7819133467323,-691.7846418613481,-691.7873778411295,-691.7901213270374,-691.7928723603712,-691.7956309827722,-691.7983972362266,-691.8011711630708,-691.8039528059937,-691.8067422080422,-691.8095394126241,-691.8123444635122,-691.8151574048491,-691.8179782811508,-691.820807137311,-691.8236440186058,-691.8264889706975,-691.829342039639,-691.8322032718789,-691.8350727142656,-691.8379504140516,-691.8408364188989,-691.8437307768833,-691.8466335364989,-691.8495447466638,-691.8524644567243,-691.8553927164604,-691.8583295760905,-691.8612750862766,-691.8642292981302,-691.8671922632168,-691.8701640335617,-691.8731446616551,-691.8761342004586,-691.8791327034098,-691.8821402244283,-691.885156817922,-691.8881825387926,-691.8912174424416,-691.8942615847764,-691.8973150222164,-691.9003778116999,-691.9034500106894,-691.9065316771791,-691.9096228697009,-691.9127236473308,-691.9158340696966,-691.918954196984,-691.9220840899438,-691.925223809899,-691.9283734187521,-691.9315329789923,-691.9347025537032,-691.9378822065698,-691.9410720018868,-691.9442720045661,-691.9474822801446,-691.9507028947926,-691.9539339153216,-691.957175409193,-691.9604274445263,-691.9636900901077,-691.9669634153989,-691.970247490546,-691.9735423863883,-691.9768481744679,-691.9801649270387,-691.9834927170758,-691.9868316182854,-691.9901817051143,-691.9935430527603,-691.9969157371818,-692.0002998351085,-692.0036954240518,-692.0071025823152,-692.0105213890052,-692.013951924043,-692.0173942681745,-692.0208485029826,-692.0243147108988,-692.0277929752144,-692.031283380093,-692.0347860105826,-692.0383009526281,-692.0418282930835,-692.0453681197258,-692.0489205212668,-692.0524855873675,-692.0560634086511,-692.0596540767172,-692.0632576841552,-692.0668743245598,-692.0705040925442,-692.0741470837561,-692.077803394892,-692.0814731237134,-692.0851563690617,-692.0888532308744,-692.0925638102018,-692.0962882092231,-692.1000265312636,-692.1037788808114,-692.1075453635357,-692.1113260863038,-692.1151211572001,-692.1189306855439,-692.122754781909,-692.1265935581421,-692.1304471273836,-692.1343156040864,-692.1381991040371,-692.1420977443764,-692.1460116436206,-692.149940921683,-692.1538856998959,-692.1578461010332,-692.1618222493336,-692.1658142705231,-692.16982229184,-692.1738464420584,-692.1778868515134,-692.1819436521265,-692.1860169774308,-692.1901069625984,-692.1942137444663,-692.1983374615648,-692.2024782541448,-692.2066362642066,-692.2108116355296,-692.2150045137014,-692.2192150461487,-692.2234433821685,-692.2276896729595,-692.2319540716546,-692.2362367333545,-692.2405378151611,-692.2448574762119,-692.249195877716,-692.2535531829897,-692.2579295574933,-692.2623251688694,-692.2667401869807,-692.2711747839498,-692.2756291341996,-692.280103414494,-692.2845978039804,-692.2891124842326,-692.2936476392948,-692.2982034557265,-692.3027801226488,-692.3073778317912,-692.3119967775405,-692.3166371569888,-692.3212991699855,-692.3259830191878,-692.3306889101141,-692.3354170511977,-692.3401676538431,-692.3449409324813,-692.3497371046294,-692.3545563909488,-692.3593990153068,-692.3642652048391,-692.3691551900133,-692.3740692046945,-692.3790074862127,-692.3839702754311,-692.3889578168173,-692.3939703585147,-692.3990081524173,-692.4040714542451,-692.4091605236225,-692.414275624158,-692.4194170235257,-692.4245849935501,-692.4297798102917,-692.435001754136,-692.4402511098838,-692.4455281668448,-692.4508332189332,-692.4561665647658,-692.4615285077629,-692.4669193562519,-692.4723394235738,-692.4777890281922,-692.4832684938061,-692.4887781494647,-692.4943183296863,-692.4998893745799,-692.505491629971,-692.5111254475299,-692.5167911849045,-692.5224892058561,-692.5282198804002,-692.5339835849502,-692.5397807024658,-692.545611622606,-692.5514767418856,-692.5573764638381,-692.5633111991812,-692.5692813659887,-692.5752873898679,-692.5813297041406,-692.5874087500314,-692.593524976861,-692.5996788422453,-692.6058708123007,-692.6121013618565,-692.6183709746728,-692.6246801436662,-692.6310293711425,-692.6374191690363,-692.643850059159,-692.6503225734543,-692.6568372542624,-692.6633946545927,-692.6699953384053,-692.6766398809024,-692.6833288688285,-692.6900629007823,-692.6968425875369,-692.7036685523734,-692.7105414314241,-692.7174618740282,-692.7244305431005,-692.731448115512,-692.7385152824843,-692.7456327499989,-692.7528012392195,-692.7600214869314,-692.7672942459949,-692.7746202858175,-692.7820003928417,-692.7894353710517,-692.7969260424992,-692.8044732478487,-692.8120778469436,-692.8197407193943,-692.8274627651889,-692.8352449053269,-692.8430880824792,-692.8509932616726,-692.858961431003,-692.8669936023764,-692.87509081228,-692.8832541225845,-692.891484621381,-692.89978342385,-692.908151673169,-692.9165905414573,-692.9251012307616,-692.9336849740831,-692.9423430364499,-692.9510767160357,-692.9598873453282,-692.9687762923488,-692.9777449619278,-692.9867947970365,-692.9959272801811,-693.0051439348596,-693.0144463270875,-693.0238360669948,-693.0333148104983,-693.0428842610547,-693.0525461714979,-693.0623023459653,-693.0721546419211,-693.0821049722772,-693.0921553076237,-693.1023076785702,-693.1125641782094,-693.1229269647058,-693.1333982640227,-693.143980372791,-693.1546756613336,-693.1654865768511,-693.1764156467837,-693.1874654823573,-693.1986387823287,-693.2099383369417,-693.2213670321096,-693.2329278538397,-693.2446238929161,-693.25645834986,-693.2684345401868,-693.2805558999816,-693.2928259918176,-693.3052485110414,-693.317827292454,-693.3305663174168,-693.3434697214168,-693.3565418021263,-693.3697870279957,-693.3832100474233,-693.3968156985499,-693.4106090197271,-693.4245952607198,-693.4387798947017,-693.4531686311144,-693.4677674294657,-693.482582514149,-693.4976203903783,-693.5128878613389,-693.5283920466682,-693.5441404023912,-693.5601407424525,-693.5764012619969,-693.5929305625766,-693.6097376794748,-693.6268321113672,-693.6442238525606,-693.6619234280873,-693.6799419319601,-693.6982910689381,-693.7169832001962,-693.7360313933455,-693.7554494773096,-693.7752521026372,-693.7954548079057,-693.8160740929741,-693.8371274999467,-693.8586337028459,-693.8806126071395,-693.9030854604562,-693.9260749760276,-693.9496054706582,-693.973703019322,-693.9983956288514,-694.0237134336178,-694.0496889166337,-694.0763571601454,-694.1037561305648,-694.1319270035474,-694.1609145362021,-694.1907674948776,-694.2215391487906,-694.2532878420448,-694.2860776594698,-694.3199792053754,-694.3550705190045,-694.3914381565351,-694.4291784773669,-694.4683991827972,-694.5092211689507,-694.5517807742754,-694.5962325269252,-694.6427525316943,-694.6915426839114,-694.7428359650884,-694.7969031716804,-694.8540615691151,-694.9146861724756,-694.9792246726965,-695.0482175202787,-695.1223254648501,-695.2023681403441,-695.2893794793034,-695.3846896134714,-695.4900500733514,-695.6078330392857,-695.7413643422674,-695.895514902571,-696.0778362920317,-696.3009795923462,-696.5886612464652,-696.9941255179085,-697.6872701884779,-709.889355822726],"x":[-1.0e-300,-9.980079681474104e-301,-9.960159362948208e-301,-9.94023904442231e-301,-9.920318725896415e-301,-9.900398407370519e-301,-9.880478088844623e-301,-9.860557770318725e-301,-9.840637451792829e-301,-9.820717133266933e-301,-9.800796814741037e-301,-9.78087649621514e-301,-9.760956177689243e-301,-9.741035859163347e-301,-9.721115540637451e-301,-9.701195222111553e-301,-9.681274903585657e-301,-9.661354585059761e-301,-9.641434266533865e-301,-9.621513948007968e-301,-9.601593629482072e-301,-9.581673310956176e-301,-9.56175299243028e-301,-9.541832673904382e-301,-9.521912355378486e-301,-9.50199203685259e-301,-9.482071718326694e-301,-9.462151399800796e-301,-9.4422310812749e-301,-9.422310762749004e-301,-9.402390444223108e-301,-9.38247012569721e-301,-9.362549807171315e-301,-9.342629488645419e-301,-9.322709170119523e-301,-9.302788851593625e-301,-9.282868533067729e-301,-9.262948214541833e-301,-9.243027896015937e-301,-9.22310757749004e-301,-9.203187258964143e-301,-9.183266940438247e-301,-9.163346621912351e-301,-9.143426303386454e-301,-9.123505984860558e-301,-9.103585666334662e-301,-9.083665347808766e-301,-9.063745029282868e-301,-9.043824710756972e-301,-9.023904392231076e-301,-9.00398407370518e-301,-8.984063755179284e-301,-8.964143436653386e-301,-8.94422311812749e-301,-8.924302799601594e-301,-8.904382481075698e-301,-8.8844621625498e-301,-8.864541844023905e-301,-8.844621525498009e-301,-8.824701206972113e-301,-8.804780888446215e-301,-8.784860569920319e-301,-8.764940251394423e-301,-8.745019932868527e-301,-8.725099614342629e-301,-8.705179295816733e-301,-8.685258977290837e-301,-8.665338658764941e-301,-8.645418340239043e-301,-8.625498021713147e-301,-8.605577703187251e-301,-8.585657384661355e-301,-8.565737066135458e-301,-8.545816747609562e-301,-8.525896429083666e-301,-8.50597611055777e-301,-8.486055792031872e-301,-8.466135473505976e-301,-8.44621515498008e-301,-8.426294836454184e-301,-8.406374517928286e-301,-8.38645419940239e-301,-8.366533880876494e-301,-8.346613562350598e-301,-8.3266932438247e-301,-8.306772925298805e-301,-8.286852606772909e-301,-8.266932288247013e-301,-8.247011969721115e-301,-8.227091651195219e-301,-8.207171332669323e-301,-8.187251014143427e-301,-8.16733069561753e-301,-8.147410377091633e-301,-8.127490058565737e-301,-8.107569740039841e-301,-8.087649421513944e-301,-8.067729102988048e-301,-8.047808784462152e-301,-8.027888465936256e-301,-8.00796814741036e-301,-7.988047828884462e-301,-7.968127510358566e-301,-7.94820719183267e-301,-7.928286873306774e-301,-7.908366554780876e-301,-7.88844623625498e-301,-7.868525917729084e-301,-7.848605599203188e-301,-7.82868528067729e-301,-7.808764962151395e-301,-7.788844643625499e-301,-7.768924325099603e-301,-7.749004006573705e-301,-7.729083688047809e-301,-7.709163369521913e-301,-7.689243050996017e-301,-7.669322732470119e-301,-7.649402413944223e-301,-7.629482095418327e-301,-7.609561776892431e-301,-7.589641458366533e-301,-7.569721139840637e-301,-7.549800821314741e-301,-7.529880502788845e-301,-7.509960184262948e-301,-7.490039865737052e-301,-7.470119547211156e-301,-7.450199228685259e-301,-7.430278910159363e-301,-7.410358591633466e-301,-7.39043827310757e-301,-7.370517954581673e-301,-7.350597636055777e-301,-7.33067731752988e-301,-7.310756999003984e-301,-7.2908366804780875e-301,-7.2709163619521915e-301,-7.250996043426295e-301,-7.231075724900399e-301,-7.211155406374502e-301,-7.191235087848606e-301,-7.171314769322709e-301,-7.151394450796813e-301,-7.131474132270916e-301,-7.11155381374502e-301,-7.091633495219123e-301,-7.071713176693227e-301,-7.051792858167331e-301,-7.0318725396414344e-301,-7.0119522211155384e-301,-6.9920319025896416e-301,-6.9721115840637456e-301,-6.952191265537849e-301,-6.932270947011953e-301,-6.912350628486056e-301,-6.89243030996016e-301,-6.872509991434263e-301,-6.852589672908367e-301,-6.83266935438247e-301,-6.812749035856574e-301,-6.792828717330677e-301,-6.772908398804781e-301,-6.7529880802788845e-301,-6.7330677617529885e-301,-6.713147443227092e-301,-6.693227124701196e-301,-6.673306806175299e-301,-6.653386487649403e-301,-6.633466169123506e-301,-6.61354585059761e-301,-6.593625532071713e-301,-6.573705213545817e-301,-6.55378489501992e-301,-6.533864576494024e-301,-6.5139442579681274e-301,-6.494023939442231e-301,-6.4741036209163346e-301,-6.4541833023904386e-301,-6.434262983864542e-301,-6.414342665338646e-301,-6.394422346812749e-301,-6.374502028286853e-301,-6.354581709760956e-301,-6.33466139123506e-301,-6.314741072709163e-301,-6.294820754183267e-301,-6.27490043565737e-301,-6.254980117131474e-301,-6.2350597986055775e-301,-6.2151394800796815e-301,-6.195219161553785e-301,-6.175298843027889e-301,-6.155378524501992e-301,-6.135458205976096e-301,-6.115537887450199e-301,-6.095617568924303e-301,-6.075697250398407e-301,-6.05577693187251e-301,-6.035856613346614e-301,-6.015936294820717e-301,-5.996015976294821e-301,-5.976095657768924e-301,-5.956175339243028e-301,-5.9362550207171316e-301,-5.9163347021912356e-301,-5.896414383665339e-301,-5.876494065139443e-301,-5.856573746613546e-301,-5.83665342808765e-301,-5.816733109561753e-301,-5.796812791035857e-301,-5.77689247250996e-301,-5.756972153984064e-301,-5.737051835458167e-301,-5.717131516932271e-301,-5.6972111984063745e-301,-5.6772908798804785e-301,-5.657370561354582e-301,-5.637450242828686e-301,-5.617529924302789e-301,-5.597609605776893e-301,-5.577689287250996e-301,-5.5577689687251e-301,-5.537848650199203e-301,-5.517928331673307e-301,-5.49800801314741e-301,-5.478087694621514e-301,-5.458167376095617e-301,-5.438247057569721e-301,-5.4183267390438246e-301,-5.3984064205179285e-301,-5.378486101992032e-301,-5.358565783466136e-301,-5.338645464940239e-301,-5.318725146414343e-301,-5.298804827888446e-301,-5.27888450936255e-301,-5.258964190836653e-301,-5.239043872310757e-301,-5.21912355378486e-301,-5.199203235258964e-301,-5.1792829167330675e-301,-5.1593625982071715e-301,-5.139442279681275e-301,-5.119521961155379e-301,-5.099601642629482e-301,-5.079681324103586e-301,-5.05976100557769e-301,-5.039840687051793e-301,-5.019920368525897e-301,-5.00000005e-301,-4.980079731474104e-301,-4.960159412948207e-301,-4.940239094422311e-301,-4.920318775896414e-301,-4.900398457370518e-301,-4.8804781388446215e-301,-4.8605578203187255e-301,-4.840637501792829e-301,-4.820717183266933e-301,-4.800796864741036e-301,-4.78087654621514e-301,-4.760956227689243e-301,-4.741035909163347e-301,-4.72111559063745e-301,-4.701195272111554e-301,-4.681274953585657e-301,-4.661354635059761e-301,-4.6414343165338645e-301,-4.6215139980079685e-301,-4.601593679482072e-301,-4.581673360956176e-301,-4.561753042430279e-301,-4.541832723904383e-301,-4.521912405378486e-301,-4.50199208685259e-301,-4.482071768326693e-301,-4.462151449800797e-301,-4.4422311312749e-301,-4.422310812749004e-301,-4.402390494223107e-301,-4.382470175697211e-301,-4.3625498571713145e-301,-4.3426295386454185e-301,-4.322709220119522e-301,-4.302788901593626e-301,-4.282868583067729e-301,-4.262948264541833e-301,-4.243027946015936e-301,-4.22310762749004e-301,-4.203187308964143e-301,-4.183266990438247e-301,-4.16334667191235e-301,-4.143426353386454e-301,-4.1235060348605575e-301,-4.1035857163346615e-301,-4.0836653978087654e-301,-4.063745079282869e-301,-4.043824760756973e-301,-4.023904442231076e-301,-4.00398412370518e-301,-3.984063805179283e-301,-3.964143486653387e-301,-3.94422316812749e-301,-3.924302849601594e-301,-3.904382531075697e-301,-3.884462212549801e-301,-3.864541894023904e-301,-3.844621575498008e-301,-3.8247012569721115e-301,-3.8047809384462155e-301,-3.784860619920319e-301,-3.764940301394423e-301,-3.745019982868526e-301,-3.7250996643426294e-301,-3.705179345816733e-301,-3.6852590272908366e-301,-3.66533870876494e-301,-3.6454183902390437e-301,-3.6254980717131477e-301,-3.6055777531872513e-301,-3.585657434661355e-301,-3.5657371161354584e-301,-3.545816797609562e-301,-3.5258964790836656e-301,-3.505976160557769e-301,-3.4860558420318727e-301,-3.4661355235059763e-301,-3.44621520498008e-301,-3.4262948864541835e-301,-3.406374567928287e-301,-3.3864542494023906e-301,-3.366533930876494e-301,-3.3466136123505978e-301,-3.3266932938247014e-301,-3.306772975298805e-301,-3.2868526567729085e-301,-3.266932338247012e-301,-3.2470120197211157e-301,-3.2270917011952192e-301,-3.207171382669323e-301,-3.1872510641434264e-301,-3.16733074561753e-301,-3.1474104270916335e-301,-3.127490108565737e-301,-3.1075697900398407e-301,-3.0876494715139443e-301,-3.067729152988048e-301,-3.0478088344621514e-301,-3.027888515936255e-301,-3.0079681974103586e-301,-2.988047878884462e-301,-2.9681275603585657e-301,-2.9482072418326693e-301,-2.928286923306773e-301,-2.9083666047808765e-301,-2.88844628625498e-301,-2.8685259677290836e-301,-2.848605649203187e-301,-2.8286853306772908e-301,-2.8087650121513944e-301,-2.788844693625498e-301,-2.7689243750996015e-301,-2.749004056573705e-301,-2.7290837380478087e-301,-2.7091634195219122e-301,-2.689243100996016e-301,-2.6693227824701194e-301,-2.649402463944223e-301,-2.629482145418327e-301,-2.6095618268924305e-301,-2.589641508366534e-301,-2.5697211898406377e-301,-2.5498008713147413e-301,-2.529880552788845e-301,-2.5099602342629484e-301,-2.490039915737052e-301,-2.4701195972111556e-301,-2.450199278685259e-301,-2.4302789601593627e-301,-2.4103586416334663e-301,-2.39043832310757e-301,-2.3705180045816735e-301,-2.350597686055777e-301,-2.3306773675298806e-301,-2.310757049003984e-301,-2.2908367304780878e-301,-2.2709164119521913e-301,-2.250996093426295e-301,-2.2310757749003985e-301,-2.211155456374502e-301,-2.1912351378486056e-301,-2.1713148193227092e-301,-2.151394500796813e-301,-2.1314741822709164e-301,-2.11155386374502e-301,-2.0916335452191235e-301,-2.071713226693227e-301,-2.0517929081673307e-301,-2.0318725896414343e-301,-2.011952271115538e-301,-1.9920319525896414e-301,-1.972111634063745e-301,-1.9521913155378486e-301,-1.932270997011952e-301,-1.9123506784860557e-301,-1.8924303599601593e-301,-1.872510041434263e-301,-1.8525897229083667e-301,-1.8326694043824702e-301,-1.8127490858565738e-301,-1.7928287673306774e-301,-1.772908448804781e-301,-1.7529881302788845e-301,-1.7330678117529881e-301,-1.7131474932270917e-301,-1.6932271747011953e-301,-1.6733068561752988e-301,-1.6533865376494024e-301,-1.633466219123506e-301,-1.6135459005976096e-301,-1.5936255820717132e-301,-1.5737052635458167e-301,-1.5537849450199203e-301,-1.5338646264940239e-301,-1.5139443079681275e-301,-1.494023989442231e-301,-1.4741036709163346e-301,-1.4541833523904382e-301,-1.4342630338645418e-301,-1.4143427153386456e-301,-1.3944223968127491e-301,-1.3745020782868527e-301,-1.3545817597609563e-301,-1.3346614412350599e-301,-1.3147411227091634e-301,-1.294820804183267e-301,-1.2749004856573706e-301,-1.2549801671314742e-301,-1.2350598486055777e-301,-1.2151395300796813e-301,-1.195219211553785e-301,-1.1752988930278885e-301,-1.155378574501992e-301,-1.1354582559760956e-301,-1.1155379374501992e-301,-1.0956176189243028e-301,-1.0756973003984064e-301,-1.05577698187251e-301,-1.0358566633466135e-301,-1.015936344820717e-301,-9.960160262948207e-302,-9.760957077689242e-302,-9.561753892430278e-302,-9.362550707171314e-302,-9.163347521912351e-302,-8.964144336653387e-302,-8.764941151394422e-302,-8.565737966135458e-302,-8.366534780876494e-302,-8.16733159561753e-302,-7.968128410358566e-302,-7.768925225099602e-302,-7.569722039840638e-302,-7.370518854581674e-302,-7.171315669322709e-302,-6.972112484063745e-302,-6.772909298804781e-302,-6.573706113545817e-302,-6.374502928286853e-302,-6.175299743027888e-302,-5.976096557768924e-302,-5.77689337250996e-302,-5.577690187250997e-302,-5.378487001992032e-302,-5.179283816733068e-302,-4.980080631474104e-302,-4.78087744621514e-302,-4.5816742609561755e-302,-4.382471075697211e-302,-4.183267890438247e-302,-3.984064705179283e-302,-3.784861519920319e-302,-3.585658334661355e-302,-3.3864551494023906e-302,-3.1872519641434264e-302,-2.988048778884462e-302,-2.788845593625498e-302,-2.589642408366534e-302,-2.39043922310757e-302,-2.1912360378486057e-302,-1.9920328525896415e-302,-1.7928296673306773e-302,-1.5936264820717133e-302,-1.394423296812749e-302,-1.1952201115537848e-302,-9.960169262948207e-303,-7.968137410358566e-303,-5.976105557768925e-303,-3.984073705179283e-303,-1.9920418525896414e-303,-9.999999999999456e-309]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_positive.json new file mode 100644 index 000000000000..55a2d49011e0 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_positive.json @@ -0,0 +1 @@ +{"expected":[691.4686750787736,691.4706690973605,691.4726671000032,691.4746691026537,691.4766751213604,691.4786851722681,691.4806992716194,691.4827174357553,691.4847396811155,691.4867660242401,691.4887964817698,691.4908310704468,691.4928698071158,691.4949127087247,691.4969597923252,691.4990110750747,691.5010665742357,691.5031263071774,691.5051902913768,691.5072585444194,691.5093310839998,691.511407927923,691.513489094105,691.5155746005743,691.5176644654717,691.5197587070529,691.5218573436877,691.5239603938622,691.5260678761796,691.5281798093603,691.5302962122441,691.5324171037907,691.5345425030804,691.5366724293154,691.5388069018212,691.540945940047,691.5430895635672,691.5452377920823,691.5473906454201,691.5495481435368,691.5517103065177,691.5538771545793,691.5560487080692,691.558224987468,691.5604060133904,691.5625918065864,691.5647823879422,691.5669777784814,691.5691779993667,691.5713830719006,691.573593017527,691.5758078578318,691.5780276145454,691.5802523095426,691.582481964845,691.5847166026214,691.5869562451896,691.5892009150182,691.5914506347268,691.5937054270884,691.5959653150302,691.5982303216352,691.600500470144,691.602775783955,691.6050562866277,691.6073420018823,691.6096329536025,691.6119291658364,691.6142306627981,691.6165374688693,691.6188496086008,691.6211671067142,691.6234899881033,691.6258182778357,691.6281520011546,691.6304911834802,691.6328358504119,691.6351860277291,691.6375417413938,691.6399030175514,691.6422698825336,691.6446423628589,691.6470204852355,691.6494042765623,691.651793763931,691.6541889746281,691.6565899361367,691.6589966761383,691.6614092225144,691.6638276033493,691.6662518469313,691.668681981755,691.671118036523,691.6735600401487,691.6760080217573,691.6784620106886,691.680922036499,691.6833881289638,691.6858603180784,691.6883386340621,691.6908231073587,691.69331376864,691.6958106488073,691.698313778994,691.7008231905678,691.7033389151333,691.7058609845341,691.7083894308554,691.7109242864262,691.7134655838225,691.7160133558688,691.7185676356411,691.7211284564698,691.723695851942,691.7262698559039,691.728850502464,691.7314378259953,691.7340318611385,691.7366326428047,691.7392402061777,691.7418545867174,691.7444758201627,691.7471039425344,691.7497389901375,691.7523809995653,691.7550300077016,691.7576860517244,691.7603491691083,691.7630193976283,691.765696775363,691.7683813406976,691.7710731323269,691.7737721892595,691.7764785508205,691.779192256655,691.7819133467323,691.7846418613481,691.7873778411295,691.7901213270374,691.7928723603712,691.7956309827722,691.7983972362266,691.8011711630708,691.8039528059937,691.8067422080422,691.8095394126241,691.8123444635122,691.8151574048491,691.8179782811508,691.820807137311,691.8236440186058,691.8264889706975,691.829342039639,691.8322032718789,691.8350727142656,691.8379504140516,691.8408364188989,691.8437307768833,691.8466335364989,691.8495447466638,691.8524644567243,691.8553927164604,691.8583295760905,691.8612750862766,691.8642292981302,691.8671922632168,691.8701640335617,691.8731446616551,691.8761342004586,691.8791327034098,691.8821402244283,691.885156817922,691.8881825387926,691.8912174424416,691.8942615847764,691.8973150222164,691.9003778116999,691.9034500106894,691.9065316771791,691.9096228697009,691.9127236473308,691.9158340696966,691.918954196984,691.9220840899438,691.925223809899,691.9283734187521,691.9315329789923,691.9347025537032,691.9378822065698,691.9410720018868,691.9442720045661,691.9474822801446,691.9507028947926,691.9539339153216,691.957175409193,691.9604274445263,691.9636900901077,691.9669634153989,691.970247490546,691.9735423863883,691.9768481744679,691.9801649270387,691.9834927170758,691.9868316182854,691.9901817051143,691.9935430527603,691.9969157371818,692.0002998351085,692.0036954240518,692.0071025823152,692.0105213890052,692.013951924043,692.0173942681745,692.0208485029826,692.0243147108988,692.0277929752144,692.031283380093,692.0347860105826,692.0383009526281,692.0418282930835,692.0453681197258,692.0489205212668,692.0524855873675,692.0560634086511,692.0596540767172,692.0632576841552,692.0668743245598,692.0705040925442,692.0741470837561,692.077803394892,692.0814731237134,692.0851563690617,692.0888532308744,692.0925638102018,692.0962882092231,692.1000265312636,692.1037788808114,692.1075453635357,692.1113260863038,692.1151211572001,692.1189306855439,692.122754781909,692.1265935581421,692.1304471273836,692.1343156040864,692.1381991040371,692.1420977443764,692.1460116436206,692.149940921683,692.1538856998959,692.1578461010332,692.1618222493336,692.1658142705231,692.16982229184,692.1738464420584,692.1778868515134,692.1819436521265,692.1860169774308,692.1901069625984,692.1942137444663,692.1983374615648,692.2024782541448,692.2066362642066,692.2108116355296,692.2150045137014,692.2192150461487,692.2234433821685,692.2276896729595,692.2319540716546,692.2362367333545,692.2405378151611,692.2448574762119,692.249195877716,692.2535531829897,692.2579295574933,692.2623251688694,692.2667401869807,692.2711747839498,692.2756291341996,692.280103414494,692.2845978039804,692.2891124842326,692.2936476392948,692.2982034557265,692.3027801226488,692.3073778317912,692.3119967775405,692.3166371569888,692.3212991699855,692.3259830191878,692.3306889101141,692.3354170511977,692.3401676538431,692.3449409324813,692.3497371046294,692.3545563909488,692.3593990153068,692.3642652048391,692.3691551900133,692.3740692046945,692.3790074862127,692.3839702754311,692.3889578168173,692.3939703585147,692.3990081524173,692.4040714542451,692.4091605236225,692.414275624158,692.4194170235257,692.4245849935501,692.4297798102917,692.435001754136,692.4402511098838,692.4455281668448,692.4508332189332,692.4561665647658,692.4615285077629,692.4669193562519,692.4723394235738,692.4777890281922,692.4832684938061,692.4887781494647,692.4943183296863,692.4998893745799,692.505491629971,692.5111254475299,692.5167911849045,692.5224892058561,692.5282198804002,692.5339835849502,692.5397807024658,692.545611622606,692.5514767418856,692.5573764638381,692.5633111991812,692.5692813659887,692.5752873898679,692.5813297041406,692.5874087500314,692.593524976861,692.5996788422453,692.6058708123007,692.6121013618565,692.6183709746728,692.6246801436662,692.6310293711425,692.6374191690363,692.643850059159,692.6503225734543,692.6568372542624,692.6633946545927,692.6699953384053,692.6766398809024,692.6833288688285,692.6900629007823,692.6968425875369,692.7036685523734,692.7105414314241,692.7174618740282,692.7244305431005,692.731448115512,692.7385152824843,692.7456327499989,692.7528012392195,692.7600214869314,692.7672942459949,692.7746202858175,692.7820003928417,692.7894353710517,692.7969260424992,692.8044732478487,692.8120778469436,692.8197407193943,692.8274627651889,692.8352449053269,692.8430880824792,692.8509932616726,692.858961431003,692.8669936023764,692.87509081228,692.8832541225845,692.891484621381,692.89978342385,692.908151673169,692.9165905414573,692.9251012307616,692.9336849740831,692.9423430364499,692.9510767160357,692.9598873453282,692.9687762923488,692.9777449619278,692.9867947970365,692.9959272801811,693.0051439348596,693.0144463270875,693.0238360669948,693.0333148104983,693.0428842610547,693.0525461714979,693.0623023459653,693.0721546419211,693.0821049722772,693.0921553076237,693.1023076785702,693.1125641782094,693.1229269647058,693.1333982640227,693.143980372791,693.1546756613336,693.1654865768511,693.1764156467837,693.1874654823573,693.1986387823287,693.2099383369417,693.2213670321096,693.2329278538397,693.2446238929161,693.25645834986,693.2684345401868,693.2805558999816,693.2928259918176,693.3052485110414,693.317827292454,693.3305663174168,693.3434697214168,693.3565418021263,693.3697870279957,693.3832100474233,693.3968156985499,693.4106090197271,693.4245952607198,693.4387798947017,693.4531686311144,693.4677674294657,693.482582514149,693.4976203903783,693.5128878613389,693.5283920466682,693.5441404023912,693.5601407424525,693.5764012619969,693.5929305625766,693.6097376794748,693.6268321113672,693.6442238525606,693.6619234280873,693.6799419319601,693.6982910689381,693.7169832001962,693.7360313933455,693.7554494773096,693.7752521026372,693.7954548079057,693.8160740929741,693.8371274999467,693.8586337028459,693.8806126071395,693.9030854604562,693.9260749760276,693.9496054706582,693.973703019322,693.9983956288514,694.0237134336178,694.0496889166337,694.0763571601454,694.1037561305648,694.1319270035474,694.1609145362021,694.1907674948776,694.2215391487906,694.2532878420448,694.2860776594698,694.3199792053754,694.3550705190045,694.3914381565351,694.4291784773669,694.4683991827972,694.5092211689507,694.5517807742754,694.5962325269252,694.6427525316943,694.6915426839114,694.7428359650884,694.7969031716804,694.8540615691151,694.9146861724756,694.9792246726965,695.0482175202787,695.1223254648501,695.2023681403441,695.2893794793034,695.3846896134714,695.4900500733514,695.6078330392857,695.7413643422674,695.895514902571,696.0778362920317,696.3009795923462,696.5886612464652,696.9941255179085,697.6872701884779,709.889355822726],"x":[1.0e-300,9.980079681474104e-301,9.960159362948208e-301,9.94023904442231e-301,9.920318725896415e-301,9.900398407370519e-301,9.880478088844623e-301,9.860557770318725e-301,9.840637451792829e-301,9.820717133266933e-301,9.800796814741037e-301,9.78087649621514e-301,9.760956177689243e-301,9.741035859163347e-301,9.721115540637451e-301,9.701195222111553e-301,9.681274903585657e-301,9.661354585059761e-301,9.641434266533865e-301,9.621513948007968e-301,9.601593629482072e-301,9.581673310956176e-301,9.56175299243028e-301,9.541832673904382e-301,9.521912355378486e-301,9.50199203685259e-301,9.482071718326694e-301,9.462151399800796e-301,9.4422310812749e-301,9.422310762749004e-301,9.402390444223108e-301,9.38247012569721e-301,9.362549807171315e-301,9.342629488645419e-301,9.322709170119523e-301,9.302788851593625e-301,9.282868533067729e-301,9.262948214541833e-301,9.243027896015937e-301,9.22310757749004e-301,9.203187258964143e-301,9.183266940438247e-301,9.163346621912351e-301,9.143426303386454e-301,9.123505984860558e-301,9.103585666334662e-301,9.083665347808766e-301,9.063745029282868e-301,9.043824710756972e-301,9.023904392231076e-301,9.00398407370518e-301,8.984063755179284e-301,8.964143436653386e-301,8.94422311812749e-301,8.924302799601594e-301,8.904382481075698e-301,8.8844621625498e-301,8.864541844023905e-301,8.844621525498009e-301,8.824701206972113e-301,8.804780888446215e-301,8.784860569920319e-301,8.764940251394423e-301,8.745019932868527e-301,8.725099614342629e-301,8.705179295816733e-301,8.685258977290837e-301,8.665338658764941e-301,8.645418340239043e-301,8.625498021713147e-301,8.605577703187251e-301,8.585657384661355e-301,8.565737066135458e-301,8.545816747609562e-301,8.525896429083666e-301,8.50597611055777e-301,8.486055792031872e-301,8.466135473505976e-301,8.44621515498008e-301,8.426294836454184e-301,8.406374517928286e-301,8.38645419940239e-301,8.366533880876494e-301,8.346613562350598e-301,8.3266932438247e-301,8.306772925298805e-301,8.286852606772909e-301,8.266932288247013e-301,8.247011969721115e-301,8.227091651195219e-301,8.207171332669323e-301,8.187251014143427e-301,8.16733069561753e-301,8.147410377091633e-301,8.127490058565737e-301,8.107569740039841e-301,8.087649421513944e-301,8.067729102988048e-301,8.047808784462152e-301,8.027888465936256e-301,8.00796814741036e-301,7.988047828884462e-301,7.968127510358566e-301,7.94820719183267e-301,7.928286873306774e-301,7.908366554780876e-301,7.88844623625498e-301,7.868525917729084e-301,7.848605599203188e-301,7.82868528067729e-301,7.808764962151395e-301,7.788844643625499e-301,7.768924325099603e-301,7.749004006573705e-301,7.729083688047809e-301,7.709163369521913e-301,7.689243050996017e-301,7.669322732470119e-301,7.649402413944223e-301,7.629482095418327e-301,7.609561776892431e-301,7.589641458366533e-301,7.569721139840637e-301,7.549800821314741e-301,7.529880502788845e-301,7.509960184262948e-301,7.490039865737052e-301,7.470119547211156e-301,7.450199228685259e-301,7.430278910159363e-301,7.410358591633466e-301,7.39043827310757e-301,7.370517954581673e-301,7.350597636055777e-301,7.33067731752988e-301,7.310756999003984e-301,7.2908366804780875e-301,7.2709163619521915e-301,7.250996043426295e-301,7.231075724900399e-301,7.211155406374502e-301,7.191235087848606e-301,7.171314769322709e-301,7.151394450796813e-301,7.131474132270916e-301,7.11155381374502e-301,7.091633495219123e-301,7.071713176693227e-301,7.051792858167331e-301,7.0318725396414344e-301,7.0119522211155384e-301,6.9920319025896416e-301,6.9721115840637456e-301,6.952191265537849e-301,6.932270947011953e-301,6.912350628486056e-301,6.89243030996016e-301,6.872509991434263e-301,6.852589672908367e-301,6.83266935438247e-301,6.812749035856574e-301,6.792828717330677e-301,6.772908398804781e-301,6.7529880802788845e-301,6.7330677617529885e-301,6.713147443227092e-301,6.693227124701196e-301,6.673306806175299e-301,6.653386487649403e-301,6.633466169123506e-301,6.61354585059761e-301,6.593625532071713e-301,6.573705213545817e-301,6.55378489501992e-301,6.533864576494024e-301,6.5139442579681274e-301,6.494023939442231e-301,6.4741036209163346e-301,6.4541833023904386e-301,6.434262983864542e-301,6.414342665338646e-301,6.394422346812749e-301,6.374502028286853e-301,6.354581709760956e-301,6.33466139123506e-301,6.314741072709163e-301,6.294820754183267e-301,6.27490043565737e-301,6.254980117131474e-301,6.2350597986055775e-301,6.2151394800796815e-301,6.195219161553785e-301,6.175298843027889e-301,6.155378524501992e-301,6.135458205976096e-301,6.115537887450199e-301,6.095617568924303e-301,6.075697250398407e-301,6.05577693187251e-301,6.035856613346614e-301,6.015936294820717e-301,5.996015976294821e-301,5.976095657768924e-301,5.956175339243028e-301,5.9362550207171316e-301,5.9163347021912356e-301,5.896414383665339e-301,5.876494065139443e-301,5.856573746613546e-301,5.83665342808765e-301,5.816733109561753e-301,5.796812791035857e-301,5.77689247250996e-301,5.756972153984064e-301,5.737051835458167e-301,5.717131516932271e-301,5.6972111984063745e-301,5.6772908798804785e-301,5.657370561354582e-301,5.637450242828686e-301,5.617529924302789e-301,5.597609605776893e-301,5.577689287250996e-301,5.5577689687251e-301,5.537848650199203e-301,5.517928331673307e-301,5.49800801314741e-301,5.478087694621514e-301,5.458167376095617e-301,5.438247057569721e-301,5.4183267390438246e-301,5.3984064205179285e-301,5.378486101992032e-301,5.358565783466136e-301,5.338645464940239e-301,5.318725146414343e-301,5.298804827888446e-301,5.27888450936255e-301,5.258964190836653e-301,5.239043872310757e-301,5.21912355378486e-301,5.199203235258964e-301,5.1792829167330675e-301,5.1593625982071715e-301,5.139442279681275e-301,5.119521961155379e-301,5.099601642629482e-301,5.079681324103586e-301,5.05976100557769e-301,5.039840687051793e-301,5.019920368525897e-301,5.00000005e-301,4.980079731474104e-301,4.960159412948207e-301,4.940239094422311e-301,4.920318775896414e-301,4.900398457370518e-301,4.8804781388446215e-301,4.8605578203187255e-301,4.840637501792829e-301,4.820717183266933e-301,4.800796864741036e-301,4.78087654621514e-301,4.760956227689243e-301,4.741035909163347e-301,4.72111559063745e-301,4.701195272111554e-301,4.681274953585657e-301,4.661354635059761e-301,4.6414343165338645e-301,4.6215139980079685e-301,4.601593679482072e-301,4.581673360956176e-301,4.561753042430279e-301,4.541832723904383e-301,4.521912405378486e-301,4.50199208685259e-301,4.482071768326693e-301,4.462151449800797e-301,4.4422311312749e-301,4.422310812749004e-301,4.402390494223107e-301,4.382470175697211e-301,4.3625498571713145e-301,4.3426295386454185e-301,4.322709220119522e-301,4.302788901593626e-301,4.282868583067729e-301,4.262948264541833e-301,4.243027946015936e-301,4.22310762749004e-301,4.203187308964143e-301,4.183266990438247e-301,4.16334667191235e-301,4.143426353386454e-301,4.1235060348605575e-301,4.1035857163346615e-301,4.0836653978087654e-301,4.063745079282869e-301,4.043824760756973e-301,4.023904442231076e-301,4.00398412370518e-301,3.984063805179283e-301,3.964143486653387e-301,3.94422316812749e-301,3.924302849601594e-301,3.904382531075697e-301,3.884462212549801e-301,3.864541894023904e-301,3.844621575498008e-301,3.8247012569721115e-301,3.8047809384462155e-301,3.784860619920319e-301,3.764940301394423e-301,3.745019982868526e-301,3.7250996643426294e-301,3.705179345816733e-301,3.6852590272908366e-301,3.66533870876494e-301,3.6454183902390437e-301,3.6254980717131477e-301,3.6055777531872513e-301,3.585657434661355e-301,3.5657371161354584e-301,3.545816797609562e-301,3.5258964790836656e-301,3.505976160557769e-301,3.4860558420318727e-301,3.4661355235059763e-301,3.44621520498008e-301,3.4262948864541835e-301,3.406374567928287e-301,3.3864542494023906e-301,3.366533930876494e-301,3.3466136123505978e-301,3.3266932938247014e-301,3.306772975298805e-301,3.2868526567729085e-301,3.266932338247012e-301,3.2470120197211157e-301,3.2270917011952192e-301,3.207171382669323e-301,3.1872510641434264e-301,3.16733074561753e-301,3.1474104270916335e-301,3.127490108565737e-301,3.1075697900398407e-301,3.0876494715139443e-301,3.067729152988048e-301,3.0478088344621514e-301,3.027888515936255e-301,3.0079681974103586e-301,2.988047878884462e-301,2.9681275603585657e-301,2.9482072418326693e-301,2.928286923306773e-301,2.9083666047808765e-301,2.88844628625498e-301,2.8685259677290836e-301,2.848605649203187e-301,2.8286853306772908e-301,2.8087650121513944e-301,2.788844693625498e-301,2.7689243750996015e-301,2.749004056573705e-301,2.7290837380478087e-301,2.7091634195219122e-301,2.689243100996016e-301,2.6693227824701194e-301,2.649402463944223e-301,2.629482145418327e-301,2.6095618268924305e-301,2.589641508366534e-301,2.5697211898406377e-301,2.5498008713147413e-301,2.529880552788845e-301,2.5099602342629484e-301,2.490039915737052e-301,2.4701195972111556e-301,2.450199278685259e-301,2.4302789601593627e-301,2.4103586416334663e-301,2.39043832310757e-301,2.3705180045816735e-301,2.350597686055777e-301,2.3306773675298806e-301,2.310757049003984e-301,2.2908367304780878e-301,2.2709164119521913e-301,2.250996093426295e-301,2.2310757749003985e-301,2.211155456374502e-301,2.1912351378486056e-301,2.1713148193227092e-301,2.151394500796813e-301,2.1314741822709164e-301,2.11155386374502e-301,2.0916335452191235e-301,2.071713226693227e-301,2.0517929081673307e-301,2.0318725896414343e-301,2.011952271115538e-301,1.9920319525896414e-301,1.972111634063745e-301,1.9521913155378486e-301,1.932270997011952e-301,1.9123506784860557e-301,1.8924303599601593e-301,1.872510041434263e-301,1.8525897229083667e-301,1.8326694043824702e-301,1.8127490858565738e-301,1.7928287673306774e-301,1.772908448804781e-301,1.7529881302788845e-301,1.7330678117529881e-301,1.7131474932270917e-301,1.6932271747011953e-301,1.6733068561752988e-301,1.6533865376494024e-301,1.633466219123506e-301,1.6135459005976096e-301,1.5936255820717132e-301,1.5737052635458167e-301,1.5537849450199203e-301,1.5338646264940239e-301,1.5139443079681275e-301,1.494023989442231e-301,1.4741036709163346e-301,1.4541833523904382e-301,1.4342630338645418e-301,1.4143427153386456e-301,1.3944223968127491e-301,1.3745020782868527e-301,1.3545817597609563e-301,1.3346614412350599e-301,1.3147411227091634e-301,1.294820804183267e-301,1.2749004856573706e-301,1.2549801671314742e-301,1.2350598486055777e-301,1.2151395300796813e-301,1.195219211553785e-301,1.1752988930278885e-301,1.155378574501992e-301,1.1354582559760956e-301,1.1155379374501992e-301,1.0956176189243028e-301,1.0756973003984064e-301,1.05577698187251e-301,1.0358566633466135e-301,1.015936344820717e-301,9.960160262948207e-302,9.760957077689242e-302,9.561753892430278e-302,9.362550707171314e-302,9.163347521912351e-302,8.964144336653387e-302,8.764941151394422e-302,8.565737966135458e-302,8.366534780876494e-302,8.16733159561753e-302,7.968128410358566e-302,7.768925225099602e-302,7.569722039840638e-302,7.370518854581674e-302,7.171315669322709e-302,6.972112484063745e-302,6.772909298804781e-302,6.573706113545817e-302,6.374502928286853e-302,6.175299743027888e-302,5.976096557768924e-302,5.77689337250996e-302,5.577690187250997e-302,5.378487001992032e-302,5.179283816733068e-302,4.980080631474104e-302,4.78087744621514e-302,4.5816742609561755e-302,4.382471075697211e-302,4.183267890438247e-302,3.984064705179283e-302,3.784861519920319e-302,3.585658334661355e-302,3.3864551494023906e-302,3.1872519641434264e-302,2.988048778884462e-302,2.788845593625498e-302,2.589642408366534e-302,2.39043922310757e-302,2.1912360378486057e-302,1.9920328525896415e-302,1.7928296673306773e-302,1.5936264820717133e-302,1.394423296812749e-302,1.1952201115537848e-302,9.960169262948207e-303,7.968137410358566e-303,5.976105557768925e-303,3.984073705179283e-303,1.9920418525896414e-303,9.999999999999456e-309]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js new file mode 100644 index 000000000000..f372971cfc88 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js @@ -0,0 +1,412 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2022 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 isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var EPS = require( '@stdlib/constants/float32/eps' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var abs = require( '@stdlib/math/base/special/abs' ); +var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); +var acschf = require( './../lib' ); + + +// FIXTURES // + +var largerNegative = require( './fixtures/julia/larger_negative.json' ); +var largerPositive = require( './fixtures/julia/larger_positive.json' ); +var largeNegative = require( './fixtures/julia/large_negative.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var mediumNegative = require( './fixtures/julia/medium_negative.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var smallNegative = require( './fixtures/julia/small_negative.json' ); +var smallPositive = require( './fixtures/julia/small_positive.json' ); +var smaller = require( './fixtures/julia/smaller.json' ); +var hugeNegative = require( './fixtures/julia/huge_negative.json' ); +var hugePositive = require( './fixtures/julia/huge_positive.json' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof acschf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function handles signed zero', function test( t ) { + t.strictEqual( acschf( 0.0 ), PINF, 'positive zero returns +infinity' ); + t.strictEqual( acschf( -0.0 ), NINF, 'negative zero returns -infinity' ); + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-0.8,0.8]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = smaller.x; + expected = smaller.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + + if ( expected[ i ] === null ) { + t.strictEqual( y, PINF, 'x: '+x[ i ]+'. E: +infinity' ); + } else { + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta+'.'); + } + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-1.0,-0.8]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = smallNegative.x; + expected = smallNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta+'.'); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[0.8,1.0]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = smallPositive.x; + expected = smallPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta+'.'); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-3.0,-1.0]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = mediumNegative.x; + expected = mediumNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta+'.'); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[1.0,3.0]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = mediumPositive.x; + expected = mediumPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta+'.'); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[3.0,28.0]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largePositive.x; + expected = largePositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta+'.'); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-28.0,-3.0]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largeNegative.x; + expected = largeNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta+'.'); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[28.0,100.0]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largerPositive.x; + expected = largerPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta+'.'); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-100.0,-28.0]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largerNegative.x; + expected = largerNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta+'.'); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-1e200,-1e208]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = hugeNegative.x; + expected = hugeNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta+'.'); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[1e300,1e308]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = hugePositive.x; + expected = hugePositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta+'.'); + } + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN`', function test( t ) { + var v = acschf( NaN ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js new file mode 100644 index 000000000000..1929d4cec019 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js @@ -0,0 +1,441 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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 isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var isNegativeZero = require( '@stdlib/math/base/assert/is-negative-zero' ); +var isPositiveZero = require( '@stdlib/math/base/assert/is-positive-zero' ); +var EPS = require( '@stdlib/constants/float32/eps' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); +var abs = require( '@stdlib/math/base/special/abs' ); +var tryRequire = require( '@stdlib/utils/try-require' ); + + +// FIXTURES // + +var largerNegative = require( './fixtures/julia/larger_negative.json' ); +var largerPositive = require( './fixtures/julia/larger_positive.json' ); +var largeNegative = require( './fixtures/julia/large_negative.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var mediumNegative = require( './fixtures/julia/medium_negative.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var smallNegative = require( './fixtures/julia/small_negative.json' ); +var smallPositive = require( './fixtures/julia/small_positive.json' ); +var smaller = require( './fixtures/julia/smaller.json' ); +var hugeNegative = require( './fixtures/julia/huge_negative.json' ); +var hugePositive = require( './fixtures/julia/huge_positive.json' ); + + +// VARIABLES // + +var acschf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( acschf instanceof Error ) +}; + + +// TESTS // + +tape( 'main export is a function', opts, function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof acschf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-0.8,0.8]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = smaller.x; + expected = smaller.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + + if ( expected[ i ] === null ) { + t.strictEqual( y, PINF, 'x: '+x[ i ]+'. E: +infinity' ); + } else { + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta); + } + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-1.0,-0.8]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = smallNegative.x; + expected = smallNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[0.8,1.0]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = smallPositive.x; + expected = smallPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-3.0,-1.0]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = mediumNegative.x; + expected = mediumNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[1.0,3.0]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = mediumPositive.x; + expected = mediumPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[3.0,28.0]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largePositive.x; + expected = largePositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-28.0,-3.0]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largeNegative.x; + expected = largeNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[28.0,100.0]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largerPositive.x; + expected = largerPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-100.0,-28.0]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largerNegative.x; + expected = largerNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-1e200,-1e208]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = hugeNegative.x; + expected = hugeNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[1e300,1e308]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = hugePositive.x; + expected = hugePositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta); + } + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN`', opts, function test( t ) { + var v = acschf( NaN ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `+infinity` if provided `+0`', opts, function test( t ) { + var v = acschf( +0.0 ); + t.strictEqual( v, PINF, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `-infinity` if provided `-0`', opts, function test( t ) { + var v = acschf( -0.0 ); + t.strictEqual( v, NINF, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `-0` if provided `-infinity`', opts, function test( t ) { + var v = acschf( NINF ); + t.strictEqual( isNegativeZero( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `+0` if provided `+infinity`', opts, function test( t ) { + var v = acschf( PINF ); + t.strictEqual( isPositiveZero( v ), true, 'returns expected value' ); + t.end(); +}); From 6b26d595fb094bc971d14181d8a3f38c357b0468 Mon Sep 17 00:00:00 2001 From: ivishal-g Date: Wed, 21 Jan 2026 03:05:01 +0530 Subject: [PATCH 5/7] fix: update copyright year in acschf test files to 2026 --- 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: na - task: lint_repl_help status: na - 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: na - task: lint_r status: na - task: lint_c_src status: missing_dependencies - task: lint_c_examples status: missing_dependencies - task: lint_c_benchmarks status: missing_dependencies - 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 --- --- lib/node_modules/@stdlib/math/base/special/acschf/README.md | 2 +- .../@stdlib/math/base/special/acschf/benchmark/benchmark.js | 2 +- .../math/base/special/acschf/benchmark/benchmark.native.js | 2 +- .../math/base/special/acschf/benchmark/c/native/Makefile | 2 +- .../math/base/special/acschf/benchmark/c/native/benchmark.c | 2 +- .../math/base/special/acschf/benchmark/julia/benchmark.jl | 2 +- lib/node_modules/@stdlib/math/base/special/acschf/binding.gyp | 2 +- .../@stdlib/math/base/special/acschf/docs/types/index.d.ts | 2 +- .../@stdlib/math/base/special/acschf/docs/types/test.ts | 2 +- .../@stdlib/math/base/special/acschf/examples/c/Makefile | 2 +- .../@stdlib/math/base/special/acschf/examples/c/example.c | 2 +- .../@stdlib/math/base/special/acschf/examples/index.js | 2 +- lib/node_modules/@stdlib/math/base/special/acschf/include.gypi | 2 +- .../special/acschf/include/stdlib/math/base/special/acschf.h | 2 +- lib/node_modules/@stdlib/math/base/special/acschf/lib/index.js | 2 +- lib/node_modules/@stdlib/math/base/special/acschf/lib/main.js | 2 +- lib/node_modules/@stdlib/math/base/special/acschf/lib/native.js | 2 +- lib/node_modules/@stdlib/math/base/special/acschf/src/Makefile | 2 +- lib/node_modules/@stdlib/math/base/special/acschf/src/addon.c | 2 +- lib/node_modules/@stdlib/math/base/special/acschf/src/main.c | 2 +- .../math/base/special/acschf/test/fixtures/julia/runner.jl | 2 +- lib/node_modules/@stdlib/math/base/special/acschf/test/test.js | 2 +- .../@stdlib/math/base/special/acschf/test/test.native.js | 2 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/README.md b/lib/node_modules/@stdlib/math/base/special/acschf/README.md index 14cbf31ff47c..5c4cb47a9470 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/README.md +++ b/lib/node_modules/@stdlib/math/base/special/acschf/README.md @@ -2,7 +2,7 @@ @license Apache-2.0 -Copyright (c) 2022 The Stdlib Authors. +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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js index ba2d2993a11c..c59d936ac4f3 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2022 The Stdlib Authors. +* 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js index b6738d88401a..3a49a8777a29 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/Makefile index f69e9da2b4d3..979768abbcec 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/Makefile +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/benchmark.c index e8f0ccd9c5b8..c2b49c072830 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/benchmark.c +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/benchmark.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/benchmark.jl b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/benchmark.jl index e5be3e2e082c..977fc32c9cba 100755 --- a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/benchmark.jl +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/benchmark.jl @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/binding.gyp b/lib/node_modules/@stdlib/math/base/special/acschf/binding.gyp index ec3992233442..0d6508a12e99 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/binding.gyp +++ b/lib/node_modules/@stdlib/math/base/special/acschf/binding.gyp @@ -1,6 +1,6 @@ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/index.d.ts index 14056ee4122b..ad6c82dffe2e 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/index.d.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2022 The Stdlib Authors. +* 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/test.ts index 59e7363dd151..a992e632e03c 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/test.ts +++ b/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/test.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2022 The Stdlib Authors. +* 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/Makefile index 6aed70daf167..c8f8e9a1517b 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/Makefile +++ b/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c index 810707091c6f..0123240e585a 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c +++ b/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/examples/index.js b/lib/node_modules/@stdlib/math/base/special/acschf/examples/index.js index 317448161f82..7af70e55ff60 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/examples/index.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2022 The Stdlib Authors. +* 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/include.gypi b/lib/node_modules/@stdlib/math/base/special/acschf/include.gypi index 575cb043c0bf..bee8d41a2caf 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/include.gypi +++ b/lib/node_modules/@stdlib/math/base/special/acschf/include.gypi @@ -1,6 +1,6 @@ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/include/stdlib/math/base/special/acschf.h b/lib/node_modules/@stdlib/math/base/special/acschf/include/stdlib/math/base/special/acschf.h index 16400f03eb00..2582179e8374 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/include/stdlib/math/base/special/acschf.h +++ b/lib/node_modules/@stdlib/math/base/special/acschf/include/stdlib/math/base/special/acschf.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/lib/index.js b/lib/node_modules/@stdlib/math/base/special/acschf/lib/index.js index f8fb96a78e97..6c97a5464c88 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/lib/index.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/lib/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2022 The Stdlib Authors. +* 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/lib/main.js b/lib/node_modules/@stdlib/math/base/special/acschf/lib/main.js index 1af653cbd4ab..db263fbdac70 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/lib/main.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2022 The Stdlib Authors. +* 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/lib/native.js b/lib/node_modules/@stdlib/math/base/special/acschf/lib/native.js index 0e4dc618e590..93b1c3f565c2 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/lib/native.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/lib/native.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/acschf/src/Makefile index bcf18aa46655..2caf905cedbe 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/src/Makefile +++ b/lib/node_modules/@stdlib/math/base/special/acschf/src/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/acschf/src/addon.c index 6a37b431f3fc..b88ead99283d 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/src/addon.c +++ b/lib/node_modules/@stdlib/math/base/special/acschf/src/addon.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/src/main.c b/lib/node_modules/@stdlib/math/base/special/acschf/src/main.c index d774b378ce0f..021666610d4a 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/acschf/src/main.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl index 7c177e218c18..c98a4c5aa415 100755 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2022 The Stdlib Authors. +# 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js index f372971cfc88..25b5c464c779 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2022 The Stdlib Authors. +* 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js index 1929d4cec019..0a4f28f6a1ca 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* 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. From bb31a8f7288dc9affa967fb956b60e6c1619b3f7 Mon Sep 17 00:00:00 2001 From: ivishal-g Date: Wed, 21 Jan 2026 12:47:38 +0530 Subject: [PATCH 6/7] chore: update according to code review --- 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: 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: 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 --- --- .../@stdlib/math/base/special/acschf/README.md | 4 ++-- .../@stdlib/math/base/special/acschf/lib/main.js | 3 +++ .../math/base/special/acschf/test/test.native.js | 10 +++++----- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/README.md b/lib/node_modules/@stdlib/math/base/special/acschf/README.md index 5c4cb47a9470..5398de54da07 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/README.md +++ b/lib/node_modules/@stdlib/math/base/special/acschf/README.md @@ -20,7 +20,7 @@ limitations under the License. # acschf -> Compute the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a single-precision floating-point number. +> Computes the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a single-precision floating-point number.
@@ -149,7 +149,7 @@ float stdlib_base_acschf( const float x ); #include int main( void ) { - const float x[] = { -5.0, -3.89, -2.78, -1.67, -0.55, 0.55, 1.67, 2.78, 3.89, 5.0 }; + const float x[] = { -5.0f, -3.89f, -2.78f, -1.67f, -0.55f, 0.55f, 1.67f, 2.78f, 3.89f, 5.0f }; float v; int i; diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/lib/main.js b/lib/node_modules/@stdlib/math/base/special/acschf/lib/main.js index db263fbdac70..453046fa6e4e 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/lib/main.js @@ -23,6 +23,9 @@ var asinhf = require( '@stdlib/math/base/special/asinhf' ); var f32 = require( '@stdlib/number/float64/base/to-float32' ); + +// VARIABLES // + var ONE = f32( 1.0 ); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js index 0a4f28f6a1ca..d78db5f02998 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js @@ -23,8 +23,8 @@ var resolve = require( 'path' ).resolve; var tape = require( 'tape' ); var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); -var isNegativeZero = require( '@stdlib/math/base/assert/is-negative-zero' ); -var isPositiveZero = require( '@stdlib/math/base/assert/is-positive-zero' ); +var isNegativeZerof = require( '@stdlib/math/base/assert/is-negative-zerof' ); +var isPositiveZerof = require( '@stdlib/math/base/assert/is-positive-zerof' ); var EPS = require( '@stdlib/constants/float32/eps' ); var PINF = require( '@stdlib/constants/float32/pinf' ); var NINF = require( '@stdlib/constants/float32/ninf' ); @@ -93,7 +93,7 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-0.8,0 '. y: '+y+ '. E: '+e+ '. tol: '+tol+ - '. Δ: '+delta); + '. Δ: '+delta+'.' ); } } } @@ -430,12 +430,12 @@ tape( 'the function returns `-infinity` if provided `-0`', opts, function test( tape( 'the function returns `-0` if provided `-infinity`', opts, function test( t ) { var v = acschf( NINF ); - t.strictEqual( isNegativeZero( v ), true, 'returns expected value' ); + t.strictEqual( isNegativeZerof( v ), true, 'returns expected value' ); t.end(); }); tape( 'the function returns `+0` if provided `+infinity`', opts, function test( t ) { var v = acschf( PINF ); - t.strictEqual( isPositiveZero( v ), true, 'returns expected value' ); + t.strictEqual( isPositiveZerof( v ), true, 'returns expected value' ); t.end(); }); From 846916684711d9d4b0e4c798ad82d95c0ae3d38f Mon Sep 17 00:00:00 2001 From: ivishal-g Date: Wed, 21 Jan 2026 22:41:29 +0530 Subject: [PATCH 7/7] chore: update according to code review --- 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: passed - task: lint_repl_help status: passed - 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: passed - 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 --- --- .../special/acschf/benchmark/benchmark.js | 21 ++++++---- .../math/base/special/acschf/docs/repl.txt | 1 + .../math/base/special/acschf/package.json | 2 +- .../math/base/special/acschf/test/test.js | 42 +++++++++++++++++-- .../base/special/acschf/test/test.native.js | 28 +++++++++++-- 5 files changed, 77 insertions(+), 17 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js index c59d936ac4f3..d86396a9d8f0 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js @@ -21,7 +21,8 @@ // MODULES // var bench = require( '@stdlib/bench' ); -var f32 = require( '@stdlib/number/float64/base/to-float32' ); +var uniform = require( '@stdlib/random/array/uniform' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); var pkg = require( './../package.json' ).name; var acschf = require( './../lib' ); @@ -30,20 +31,24 @@ var acschf = require( './../lib' ); bench( pkg, function benchmark( b ) { var x; + var y; var i; - x = f32( 1.234567 ); - i = 0; + x = uniform( 100, -50.0, 50.0, { + 'dtype': 'float32' + }); b.tic(); - while ( i < b.iterations ) { - x = acschf( x ); - i += 1; + for ( i = 0; i < b.iterations; i++ ) { + y = acschf( x[ i % x.length ] ); + if ( isnanf( y ) ) { + b.fail( 'should not return NaN' ); + } } b.toc(); - if ( x !== x ) { - b.fail( 'unexpected NaN' ); + if ( isnanf( y ) ) { + b.fail( 'should not return NaN' ); } b.pass( 'benchmark finished' ); b.end(); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/acschf/docs/repl.txt index e29775029c40..7029c60efb70 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/docs/repl.txt +++ b/lib/node_modules/@stdlib/math/base/special/acschf/docs/repl.txt @@ -1,3 +1,4 @@ + {{alias}}( x ) Computes the hyperbolic arccosecant of a single-precision floating-point number. diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/package.json b/lib/node_modules/@stdlib/math/base/special/acschf/package.json index 0d5ec6490c44..ea629a021e93 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/package.json +++ b/lib/node_modules/@stdlib/math/base/special/acschf/package.json @@ -1,7 +1,7 @@ { "name": "@stdlib/math/base/special/acschf", "version": "0.0.0", - "description": "Compute the inverse hyperbolic arccosecant of a single-precision floating-point number.", + "description": "Compute the hyperbolic arccosecant of a single-precision floating-point number.", "license": "Apache-2.0", "author": { "name": "The Stdlib Authors", diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js index 25b5c464c779..191c2b878e5b 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js @@ -27,11 +27,9 @@ var PINF = require( '@stdlib/constants/float32/pinf' ); var NINF = require( '@stdlib/constants/float32/ninf' ); var abs = require( '@stdlib/math/base/special/abs' ); var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); +var isNegativeZerof = require( '@stdlib/math/base/assert/is-negative-zerof' ); +var isPositiveZerof = require( '@stdlib/math/base/assert/is-positive-zerof' ); var acschf = require( './../lib' ); - - -// FIXTURES // - var largerNegative = require( './fixtures/julia/larger_negative.json' ); var largerPositive = require( './fixtures/julia/larger_positive.json' ); var largeNegative = require( './fixtures/julia/large_negative.json' ); @@ -43,6 +41,8 @@ var smallPositive = require( './fixtures/julia/small_positive.json' ); var smaller = require( './fixtures/julia/smaller.json' ); var hugeNegative = require( './fixtures/julia/huge_negative.json' ); var hugePositive = require( './fixtures/julia/huge_positive.json' ); +var tinyNegative = require( './fixtures/julia/tiny_negative.json' ); +var tinyPositive = require( './fixtures/julia/tiny_positive.json' ); // TESTS // @@ -410,3 +410,37 @@ tape( 'the function returns `NaN` if provided `NaN`', function test( t ) { t.strictEqual( isnanf( v ), true, 'returns expected value' ); t.end(); }); + +tape( 'the function returns -0 if provided -infinity', function test( t ) { + var v = acschf( NINF ); + t.strictEqual( isNegativeZerof( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns +0 if provided +infinity', function test( t ) { + var v = acschf( PINF ); + t.strictEqual( isPositiveZerof( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function evaluates the inverse hyperbolic arccosecant for tiny negative values', function test( t ) { + var i; + var v; + + for ( i = 0; i < tinyNegative.length; i++ ) { + v = acschf( tinyNegative[ i ] ); + t.strictEqual( isnanf( v ), false, 'does not return NaN' ); + } + t.end(); +}); + +tape( 'the function evaluates the inverse hyperbolic arccosecant for tiny positive values', function test( t ) { + var i; + var v; + + for ( i = 0; i < tinyPositive.length; i++ ) { + v = acschf( tinyPositive[ i ] ); + t.strictEqual( isnanf( v ), false, 'does not return NaN' ); + } + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js index d78db5f02998..9d358cb1ec2f 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js @@ -31,10 +31,8 @@ var NINF = require( '@stdlib/constants/float32/ninf' ); var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); var abs = require( '@stdlib/math/base/special/abs' ); var tryRequire = require( '@stdlib/utils/try-require' ); - - -// FIXTURES // - +var tinyNegative = require( './fixtures/julia/tiny_negative.json' ); +var tinyPositive = require( './fixtures/julia/tiny_positive.json' ); var largerNegative = require( './fixtures/julia/larger_negative.json' ); var largerPositive = require( './fixtures/julia/larger_positive.json' ); var largeNegative = require( './fixtures/julia/large_negative.json' ); @@ -439,3 +437,25 @@ tape( 'the function returns `+0` if provided `+infinity`', opts, function test( t.strictEqual( isPositiveZerof( v ), true, 'returns expected value' ); t.end(); }); + +tape( 'the native function evaluates the inverse hyperbolic arccosecant for tiny negative values', function test( t ) { + var i; + var v; + + for ( i = 0; i < tinyNegative.length; i++ ) { + v = acschf( tinyNegative[ i ] ); + t.strictEqual( isnanf( v ), false, 'does not return NaN' ); + } + t.end(); +}); + +tape( 'the native function evaluates the inverse hyperbolic arccosecant for tiny positive values', function test( t ) { + var i; + var v; + + for ( i = 0; i < tinyPositive.length; i++ ) { + v = acschf( tinyPositive[ i ] ); + t.strictEqual( isnanf( v ), false, 'does not return NaN' ); + } + t.end(); +});