diff --git a/lib/node_modules/@stdlib/number/float32/base/exponent/package.json b/lib/node_modules/@stdlib/number/float32/base/exponent/package.json index e8c64f938fb3..006a2d8be8d7 100644 --- a/lib/node_modules/@stdlib/number/float32/base/exponent/package.json +++ b/lib/node_modules/@stdlib/number/float32/base/exponent/package.json @@ -62,6 +62,7 @@ "types", "type", "exponent", + "exponentiation", "unbiased", "bits", "floating-point", @@ -72,5 +73,122 @@ "ieee754", "number", "word" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "exponent", + "alias": "exponent", + "pkg_desc": "perform exponentiation", + "desc": "performs exponentiation", + "short_desc": "", + "parameters": [ + { + "name": "x", + "desc": "first input value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + }, + "domain": [ + { + "min": "-infinity", + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + -10, + 10 + ] + }, + "example_values": [ + 1, + 27, + 0, + 10, + 9, + 8, + 1, + 125, + 20, + 11, + 12, + 3, + 2, + 15, + 16, + 17, + 125, + 19, + 101, + 21 + ] + }, + { + "name": "y", + "desc": "second input value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + }, + "domain": [ + { + "min": "-infinity", + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + -10, + 10 + ] + }, + "example_values": [ + 51, + 2, + 10, + 14, + 90, + 88, + 1, + 12, + 120, + 71, + 62, + 31, + 2, + 45, + 26, + 37, + 25, + 59, + 11, + 41 + ] + } + ], + "output_policy": "same", + "returns": { + "desc": "result", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + } + }, + "keywords": [ + "exponentiation", + "exponent" + ], + "extra_keywords": [] + } + } }