diff --git a/lib/node_modules/@stdlib/math/base/special/acsc/package.json b/lib/node_modules/@stdlib/math/base/special/acsc/package.json index dff591d9fb84..58d515a18697 100644 --- a/lib/node_modules/@stdlib/math/base/special/acsc/package.json +++ b/lib/node_modules/@stdlib/math/base/special/acsc/package.json @@ -65,5 +65,88 @@ "trig", "trigonometry", "angle" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "acsc", + "alias": "acsc", + "pkg_desc": "compute the arccosecant", + "desc": "computes the arccosecant", + "short_desc": "arcosecant", + "parameters": [ + { + "name": "x", + "desc": "input value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + }, + "domain": [ + { + "min": "-infinity", + "max": -1 + }, + { + "min": 1, + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + 1.1, + 10 + ] + }, + "example_values": [ + 2, + -2, + 1.5, + -3.7, + 5, + -8.2, + 10, + -12.5, + 3.3, + -4.4, + 7.7, + -9.9, + 15, + -20, + 1.2, + -1.3, + 2.5, + -2.6, + 3.14, + -3.14 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "arccosecant", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float64" + } + }, + "keywords": [ + "inverse", + "cosecant", + "acsc", + "arc", + "arccosecant", + "angle", + "sin" + ], + "extra_keywords": [ + "math.asin" + ] + } + } }