From 0c78f6a6971f2d52dce136f3db21deffda00a9d1 Mon Sep 17 00:00:00 2001 From: GUNJ JOSHI Date: Wed, 10 Sep 2025 13:49:02 +0530 Subject: [PATCH 01/11] chore: add structured package data --- 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: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../math/base/special/cosh/package.json | 77 +++++++++++++++- .../math/base/special/cosm1/package.json | 77 +++++++++++++++- .../math/base/special/cospi/package.json | 77 +++++++++++++++- .../math/base/special/cot/package.json | 86 +++++++++++++++++- .../math/base/special/cotd/package.json | 87 ++++++++++++++++++- .../math/base/special/cotdf/package.json | 83 +++++++++++++++++- .../math/base/special/cotf/package.json | 86 +++++++++++++++++- .../math/base/special/coth/package.json | 85 +++++++++++++++++- .../math/base/special/covercos/package.json | 87 ++++++++++++++++++- .../math/base/special/coversin/package.json | 86 +++++++++++++++++- 10 files changed, 821 insertions(+), 10 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosh/package.json b/lib/node_modules/@stdlib/math/base/special/cosh/package.json index d4d83276cdc8..b19a20301c7f 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosh/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cosh/package.json @@ -66,5 +66,80 @@ "angle", "polyfill", "ponyfill" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "cosh", + "alias": "cosh", + "pkg_desc": "compute the hyperbolic cosine of a double-precision floating-point number", + "desc": "computes the hyperbolic cosine of a double-precision floating-point number", + "short_desc": "hyperbolic cosine", + "parameters": [ + { + "name": "x", + "desc": "input value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + }, + "domain": [ + { + "min": "-infinity", + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + -50, + 50 + ] + }, + "example_values": [ + -3.7, + 0.25, + 12.9, + -0.81, + 5.4, + -19.2, + 2.3, + -7.1, + 0, + 33.8, + -14.6, + 8.05, + -0.003, + 1.7, + -2.8, + 49.9, + -26.3, + 6.6, + -11.4, + 0.93 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "hyperbolic cosine", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + } + }, + "keywords": [ + "cosine", + "cos", + "hyperbolic" + ], + "extra_keywords": [ + "math.cosh" + ] + } + } } diff --git a/lib/node_modules/@stdlib/math/base/special/cosm1/package.json b/lib/node_modules/@stdlib/math/base/special/cosm1/package.json index 2d4b06a2a5cd..a9bca2c4b80a 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosm1/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cosm1/package.json @@ -64,5 +64,80 @@ "trig", "trigonometry", "radians" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "cosm1", + "alias": "cosm1", + "pkg_desc": "compute `cos(x) - 1` where `cos` is the cosine of a number (in radians)", + "desc": "computes `cos(x) - 1` where `cos` is the cosine of a number (in radians)", + "short_desc": "cosine minus one", + "parameters": [ + { + "name": "x", + "desc": "input value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + }, + "domain": [ + { + "min": "-infinity", + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + -50, + 50 + ] + }, + "example_values": [ + -2.9, + 0.41, + 7.6, + -0.37, + 3.2, + -11.8, + 1.2, + -6.4, + 0, + 9.7, + -4.5, + 5.3, + -0.02, + 1.9, + -2.2, + 18.1, + -13.6, + 2.8, + -7.9, + 0.77 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "cosine minus one", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + } + }, + "keywords": [ + "cos", + "cosm1", + "cosine" + ], + "extra_keywords": [ + "math.cos" + ] + } + } } diff --git a/lib/node_modules/@stdlib/math/base/special/cospi/package.json b/lib/node_modules/@stdlib/math/base/special/cospi/package.json index e427ab92777c..df96c4e0a9a0 100644 --- a/lib/node_modules/@stdlib/math/base/special/cospi/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cospi/package.json @@ -63,5 +63,80 @@ "trig", "trigonometry", "radians" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "cospi", + "alias": "cospi", + "pkg_desc": "compute the cosine of a double-precision floating-point number times π", + "desc": "computes the cosine of a double-precision floating-point number times π", + "short_desc": "cosine of a number times π", + "parameters": [ + { + "name": "x", + "desc": "input value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + }, + "domain": [ + { + "min": "-infinity", + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + -50, + 50 + ] + }, + "example_values": [ + -3.25, + 0.125, + 1.6, + -0.45, + 2.75, + -7.3, + 4.2, + -5.8, + 0, + 9.1, + -2.2, + 3.33, + -0.01, + 0.5, + -1.75, + 6.7, + -4.9, + 8.8, + -10.4, + 12.6 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "function value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + } + }, + "keywords": [ + "cos", + "cosine", + "pi" + ], + "extra_keywords": [ + "math.cos" + ] + } + } } diff --git a/lib/node_modules/@stdlib/math/base/special/cot/package.json b/lib/node_modules/@stdlib/math/base/special/cot/package.json index 2879213ff5b2..5042a804a46e 100644 --- a/lib/node_modules/@stdlib/math/base/special/cot/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cot/package.json @@ -66,5 +66,89 @@ "cosine", "trig", "trigonometry" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "cot", + "alias": "cot", + "pkg_desc": "evaluate the cotangent of a double-precision floating-point number (in radians)", + "desc": "evaluates the cotangent of a double-precision floating-point number (in radians)", + "short_desc": "cotangent", + "parameters": [ + { + "name": "x", + "desc": "input value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + }, + "domain": [ + { + "min": "-infinity", + "max": 0 + }, + { + "min": 0, + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + 0.5, + 50 + ] + }, + "example_values": [ + 11.37, + -29.07, + 5.47, + -41.83, + 2.73, + 24.13, + -6.74, + 39.72, + -0.64, + 1.19, + -14.62, + 13.64, + -9.51, + 6.88, + -18.46, + 0.53, + -4.38, + 4.11, + -2.27, + 19.82 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "cotangent", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + } + }, + "keywords": [ + "cot", + "cotangent", + "tan", + "tangent", + "sin", + "sine", + "cos", + "cosine" + ], + "extra_keywords": [ + "math.tan" + ] + } + } } diff --git a/lib/node_modules/@stdlib/math/base/special/cotd/package.json b/lib/node_modules/@stdlib/math/base/special/cotd/package.json index 8ca56a79d069..f6bec3c71de6 100644 --- a/lib/node_modules/@stdlib/math/base/special/cotd/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cotd/package.json @@ -68,5 +68,90 @@ "cosine", "trig", "trigonometry" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "cotd", + "alias": "cotd", + "pkg_desc": "evaluate the cotangent of a doublr-precision floating-point number (in degrees)", + "desc": "evaluates the cotangent of a double-precision floating-point number (in degrees)", + "short_desc": "cotangent", + "parameters": [ + { + "name": "x", + "desc": "input value (in degrees)", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + }, + "domain": [ + { + "min": "-infinity", + "max": 0 + }, + { + "min": 0, + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + 0.5, + 180 + ] + }, + "example_values": [ + 34.7, + -112.7, + 146.2, + -22.8, + 73.8, + -176.4, + 0.3, + -101.5, + 59.4, + -171.8, + 16.9, + -44.1, + -139.9, + -7.5, + -67.3, + 112.6, + -150.6, + -81.2, + -163.3, + -126.4 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "cotangent", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + } + }, + "keywords": [ + "cot", + "cotd", + "cotangent", + "tan", + "tangent", + "sin", + "sine", + "cos", + "cosine" + ], + "extra_keywords": [ + "math.tan" + ] + } + } } diff --git a/lib/node_modules/@stdlib/math/base/special/cotdf/package.json b/lib/node_modules/@stdlib/math/base/special/cotdf/package.json index 2d4254259a89..0f4dbea6aa67 100644 --- a/lib/node_modules/@stdlib/math/base/special/cotdf/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cotdf/package.json @@ -64,5 +64,86 @@ "tangent", "trig", "trigonometry" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "cotd", + "alias": "cotdf", + "pkg_desc": "evaluate the cotangent of a single-precision floating-point number (in degrees)", + "desc": "evaluates the cotangent of a single-precision floating-point number (in degrees)", + "short_desc": "cotangent", + "parameters": [ + { + "name": "x", + "desc": "input value (in degrees)", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + }, + "domain": [ + { + "min": "-infinity", + "max": 0 + }, + { + "min": 0, + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + 0.5, + 180 + ] + }, + "example_values": [ + 41.7, + -149.3, + -24.4, + 0.7, + -176.9, + -127.6, + 88.4, + -53.3, + -161.4, + -97.2, + -179.6, + -145.3, + -9.8, + -168.2, + -118.3, + -66.9, + -173.2, + -109.7, + -137.9, + -156.1 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "cotangent", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + } + }, + "keywords": [ + "cot", + "cotdf", + "cotangent", + "tan", + "tangent" + ], + "extra_keywords": [ + "math.tan" + ] + } + } } diff --git a/lib/node_modules/@stdlib/math/base/special/cotf/package.json b/lib/node_modules/@stdlib/math/base/special/cotf/package.json index 42479968785d..b598a4699756 100644 --- a/lib/node_modules/@stdlib/math/base/special/cotf/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cotf/package.json @@ -66,5 +66,89 @@ "cosine", "trig", "trigonometry" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "cot", + "alias": "cotf", + "pkg_desc": "evaluate the cotangent of a single-precision floating-point number (in radians)", + "desc": "evaluates the cotangent of a single-precision floating-point number (in radians)", + "short_desc": "cotangent", + "parameters": [ + { + "name": "x", + "desc": "input value (in radians)", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + }, + "domain": [ + { + "min": "-infinity", + "max": 0 + }, + { + "min": 0, + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + 0.5, + 50 + ] + }, + "example_values": [ + 4.2, + -13.8, + 0.13, + -21.3, + 14.6, + -7.2, + 29.4, + -33.7, + 2.6, + -9.6, + 0.91, + -1.47, + -26.5, + 7.9, + -18.7, + -11.6, + -16.4, + -5.3, + -12.4, + -8.1 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "cotangent", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + } + }, + "keywords": [ + "cotf", + "cotangent", + "tan", + "tangent", + "sin", + "sine", + "cos", + "cosine" + ], + "extra_keywords": [ + "math.tan" + ] + } + } } diff --git a/lib/node_modules/@stdlib/math/base/special/coth/package.json b/lib/node_modules/@stdlib/math/base/special/coth/package.json index 81e0dcd07ef9..205af2a7c8cf 100644 --- a/lib/node_modules/@stdlib/math/base/special/coth/package.json +++ b/lib/node_modules/@stdlib/math/base/special/coth/package.json @@ -68,5 +68,88 @@ "trigonometry", "radians", "angle" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "coth", + "alias": "coth", + "pkg_desc": "compute the hyperbolic cotangent of a double-precision floating-point number", + "desc": "computes the hyperbolic cotangent of a double-precision floating-point number", + "short_desc": "hyperbolic cotangent", + "parameters": [ + { + "name": "x", + "desc": "input value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + }, + "domain": [ + { + "min": "-infinity", + "max": 0 + }, + { + "min": 0, + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + 0.5, + 50 + ] + }, + "example_values": [ + -23.8, + 17.1, + -0.73, + 0.61, + -12.4, + 3.9, + -7.6, + 26.3, + -1.3, + 2.4, + -15.4, + 10.5, + -4.9, + 7.8, + -9.2, + 18.2, + -21.9, + 12.8, + -2.6, + 0.92 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "hyperbolic cotangent", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + } + }, + "keywords": [ + "cotangent", + "cot", + "coth", + "tangent", + "tan", + "tanh", + "hyperbolic" + ], + "extra_keywords": [ + "math.tanh" + ] + } + } } diff --git a/lib/node_modules/@stdlib/math/base/special/covercos/package.json b/lib/node_modules/@stdlib/math/base/special/covercos/package.json index d12251d46a53..d6dbc371948f 100644 --- a/lib/node_modules/@stdlib/math/base/special/covercos/package.json +++ b/lib/node_modules/@stdlib/math/base/special/covercos/package.json @@ -73,5 +73,90 @@ "trigonometry", "radians", "angle" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "covercos", + "alias": "covercos", + "pkg_desc": "compute the coversed cosine (in radians) of a double-precision floating-point number", + "desc": "computes the coversed cosine (in radians) of a double-precision floating-point number", + "short_desc": "coversed cosine", + "parameters": [ + { + "name": "x", + "desc": "input value (in radians)", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + }, + "domain": [ + { + "min": "-infinity", + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + -50, + 50 + ] + }, + "example_values": [ + -6.1, + -3.4, + -1.2, + -0.49, + -0.08, + 0, + 0.27, + 0.95, + 1.7, + 2.3, + 3.6, + -2.9, + 4.8, + -5.7, + 6.9, + -7.8, + 8.4, + -9.6, + 10.3, + -11.1 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "coversed cosine", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + } + }, + "keywords": [ + "covercos", + "covercosin", + "covercosine", + "versed cosine", + "coversed", + "cosinus versus", + "covercosinus", + "cvc", + "versed", + "cosine", + "cos", + "sine", + "sin" + ], + "extra_keywords": [ + "math.sin" + ] + } + } } diff --git a/lib/node_modules/@stdlib/math/base/special/coversin/package.json b/lib/node_modules/@stdlib/math/base/special/coversin/package.json index 2046ab9e3893..08aaf88b5d10 100644 --- a/lib/node_modules/@stdlib/math/base/special/coversin/package.json +++ b/lib/node_modules/@stdlib/math/base/special/coversin/package.json @@ -72,5 +72,89 @@ "trigonometry", "radians", "angle" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "coversin", + "alias": "coversin", + "pkg_desc": "compute the coversed sine (in radians) of a double-precision floating-point number", + "desc": "computes the coversed sine (in radians) of a double-precision floating-point number", + "short_desc": "coversed sine", + "parameters": [ + { + "name": "x", + "desc": "input value (in radians)", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + }, + "domain": [ + { + "min": "-infinity", + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + -50, + 50 + ] + }, + "example_values": [ + -7.3, + -5.4, + -2.2, + -0.9, + -0.12, + 0, + 0.19, + 0.68, + 1.4, + 2.1, + 3.2, + -1.7, + 4.9, + -3.8, + 6.1, + -4.5, + 8.7, + -9.9, + 10.8, + -11.6 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "coversed sine", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + } + }, + "keywords": [ + "coversin", + "coversine", + "versed sine", + "coversed", + "cosinus versus", + "coversinus", + "covers", + "cosiv", + "cvs", + "versed", + "sine", + "sin" + ], + "extra_keywords": [ + "math.sin" + ] + } + } } From e1d986d3151349dbf797197c2d693a5e3c08ab36 Mon Sep 17 00:00:00 2001 From: GUNJ JOSHI Date: Wed, 10 Sep 2025 14:34:34 +0530 Subject: [PATCH 02/11] docs: fix indentation --- 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: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../@stdlib/math/base/special/coversin/package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/coversin/package.json b/lib/node_modules/@stdlib/math/base/special/coversin/package.json index 08aaf88b5d10..05307d223071 100644 --- a/lib/node_modules/@stdlib/math/base/special/coversin/package.json +++ b/lib/node_modules/@stdlib/math/base/special/coversin/package.json @@ -132,11 +132,11 @@ "returns": { "desc": "coversed sine", "type": { - "javascript": "number", - "jsdoc": "number", - "c": "double", - "dtype": "float64" - } + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + } }, "keywords": [ "coversin", From ccf0e4742a1aa298f9e8d925e7014643247dab24 Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 13 Sep 2025 00:10:07 -0700 Subject: [PATCH 03/11] docs: update description Signed-off-by: Athan --- lib/node_modules/@stdlib/math/base/special/cosm1/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosm1/package.json b/lib/node_modules/@stdlib/math/base/special/cosm1/package.json index a9bca2c4b80a..a1542420914e 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosm1/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cosm1/package.json @@ -72,7 +72,7 @@ "alias": "cosm1", "pkg_desc": "compute `cos(x) - 1` where `cos` is the cosine of a number (in radians)", "desc": "computes `cos(x) - 1` where `cos` is the cosine of a number (in radians)", - "short_desc": "cosine minus one", + "short_desc": "cos(x) - 1", "parameters": [ { "name": "x", From ce434f2664299913822f41918a1027d12ba180e1 Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 13 Sep 2025 00:10:47 -0700 Subject: [PATCH 04/11] docs: update description Signed-off-by: Athan --- lib/node_modules/@stdlib/math/base/special/cosm1/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosm1/package.json b/lib/node_modules/@stdlib/math/base/special/cosm1/package.json index a1542420914e..f69e031b183e 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosm1/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cosm1/package.json @@ -122,7 +122,7 @@ ], "output_policy": "real_floating_point_and_generic", "returns": { - "desc": "cosine minus one", + "desc": "result", "type": { "javascript": "number", "jsdoc": "number", From e545bb92418b0ce130cec010c898b19728aa9b0f Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 13 Sep 2025 00:11:42 -0700 Subject: [PATCH 05/11] docs: update description Signed-off-by: Athan --- lib/node_modules/@stdlib/math/base/special/cospi/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cospi/package.json b/lib/node_modules/@stdlib/math/base/special/cospi/package.json index df96c4e0a9a0..6df1992c9cd5 100644 --- a/lib/node_modules/@stdlib/math/base/special/cospi/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cospi/package.json @@ -121,7 +121,7 @@ ], "output_policy": "real_floating_point_and_generic", "returns": { - "desc": "function value", + "desc": "result", "type": { "javascript": "number", "jsdoc": "number", From 979c2a40df0e93d5e7867f2a346c4a21dfcd7cf6 Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 13 Sep 2025 00:12:31 -0700 Subject: [PATCH 06/11] chore: use smallest subnormal Signed-off-by: Athan --- lib/node_modules/@stdlib/math/base/special/cot/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cot/package.json b/lib/node_modules/@stdlib/math/base/special/cot/package.json index 5042a804a46e..30db90b0b401 100644 --- a/lib/node_modules/@stdlib/math/base/special/cot/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cot/package.json @@ -88,10 +88,10 @@ "domain": [ { "min": "-infinity", - "max": 0 + "max": -5e-324 }, { - "min": 0, + "min": 5e-324, "max": "infinity" } ], From c5e6531f6a3167fbf77b65761c052894b7e1701c Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 13 Sep 2025 00:13:16 -0700 Subject: [PATCH 07/11] docs: fix spelling Signed-off-by: Athan --- lib/node_modules/@stdlib/math/base/special/cotd/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cotd/package.json b/lib/node_modules/@stdlib/math/base/special/cotd/package.json index f6bec3c71de6..28b27067157e 100644 --- a/lib/node_modules/@stdlib/math/base/special/cotd/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cotd/package.json @@ -74,7 +74,7 @@ "$schema": "math/base@v1.0", "base_alias": "cotd", "alias": "cotd", - "pkg_desc": "evaluate the cotangent of a doublr-precision floating-point number (in degrees)", + "pkg_desc": "evaluate the cotangent of a double-precision floating-point number (in degrees)", "desc": "evaluates the cotangent of a double-precision floating-point number (in degrees)", "short_desc": "cotangent", "parameters": [ From e3375f39d8110cbbc776512906c63750235bcc04 Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 13 Sep 2025 00:14:19 -0700 Subject: [PATCH 08/11] chore: use smallest subnormal Signed-off-by: Athan --- lib/node_modules/@stdlib/math/base/special/cotd/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cotd/package.json b/lib/node_modules/@stdlib/math/base/special/cotd/package.json index 28b27067157e..a24d0b5ea2ff 100644 --- a/lib/node_modules/@stdlib/math/base/special/cotd/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cotd/package.json @@ -90,10 +90,10 @@ "domain": [ { "min": "-infinity", - "max": 0 + "max": -5e-324 }, { - "min": 0, + "min": 5e-324, "max": "infinity" } ], From 4073d252f0fbb388c347eda870da98ea20ecb3f1 Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 13 Sep 2025 00:15:38 -0700 Subject: [PATCH 09/11] chore: use smallest subnormal Signed-off-by: Athan --- lib/node_modules/@stdlib/math/base/special/cotdf/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cotdf/package.json b/lib/node_modules/@stdlib/math/base/special/cotdf/package.json index 0f4dbea6aa67..b0ffb4f4152a 100644 --- a/lib/node_modules/@stdlib/math/base/special/cotdf/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cotdf/package.json @@ -86,10 +86,10 @@ "domain": [ { "min": "-infinity", - "max": 0 + "max": -1.4e-45 }, { - "min": 0, + "min": 1.4e-45, "max": "infinity" } ], From 5decbbbe26e4ca4f49935cc263ae1329f3b00dc2 Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 13 Sep 2025 00:16:27 -0700 Subject: [PATCH 10/11] chore: use smallest subnormal Signed-off-by: Athan --- lib/node_modules/@stdlib/math/base/special/cotf/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cotf/package.json b/lib/node_modules/@stdlib/math/base/special/cotf/package.json index b598a4699756..243cf5fef7bf 100644 --- a/lib/node_modules/@stdlib/math/base/special/cotf/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cotf/package.json @@ -88,10 +88,10 @@ "domain": [ { "min": "-infinity", - "max": 0 + "max": -1.4e-45 }, { - "min": 0, + "min": 1.4e-45, "max": "infinity" } ], From 817df00f2f8f818f4392d91a212acebd4e94d0b7 Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 13 Sep 2025 00:19:04 -0700 Subject: [PATCH 11/11] chore: use smallest subnormal Signed-off-by: Athan --- lib/node_modules/@stdlib/math/base/special/coth/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/coth/package.json b/lib/node_modules/@stdlib/math/base/special/coth/package.json index 205af2a7c8cf..631455f312af 100644 --- a/lib/node_modules/@stdlib/math/base/special/coth/package.json +++ b/lib/node_modules/@stdlib/math/base/special/coth/package.json @@ -90,10 +90,10 @@ "domain": [ { "min": "-infinity", - "max": 0 + "max": -5e-324 }, { - "min": 0, + "min": 5e-324, "max": "infinity" } ],