diff --git a/lib/node_modules/@stdlib/math/base/special/cexp/package.json b/lib/node_modules/@stdlib/math/base/special/cexp/package.json index dbfc717d848f..0ae083d2f267 100644 --- a/lib/node_modules/@stdlib/math/base/special/cexp/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cexp/package.json @@ -64,5 +64,137 @@ "exp", "pow", "cexp" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "cexp", + "alias": "cexp", + "pkg_desc": "evaluate the exponential function for a double-precision complex floating-point number", + "desc": "evaluates the exponential function for a double-precision complex floating-point number", + "short_desc": "exponential function", + "parameters": [ + { + "name": "x", + "desc": "input value", + "type": { + "javascript": "Complex128", + "jsdoc": "Complex128", + "c": "stdlib_complex128_t", + "dtype": "complex128" + }, + "domain": null, + "rand": { + "prng": "random/base/uniform", + "parameters": [ + [ + -10, + 10 + ], + [ + -10, + 10 + ] + ] + }, + "example_values": [ + { + "re": -3.14, + "im": -1.5 + }, + { + "re": 0, + "im": 0 + }, + { + "re": -1.5, + "im": 2.5 + }, + { + "re": 2.5, + "im": -1.5 + }, + { + "re": 0, + "im": -3.7 + }, + { + "re": 4.2, + "im": 0 + }, + { + "re": 21.2, + "im": 3 + }, + { + "re": 11, + "im": -5 + }, + { + "re": 33, + "im": -14.67 + }, + { + "re": -42, + "im": 9.3 + }, + { + "re": -3, + "im": 3 + }, + { + "re": 73, + "im": 31 + }, + { + "re": -2.45, + "im": 1.23 + }, + { + "re": 2.45, + "im": -1.23 + }, + { + "re": 1.77, + "im": -3.14 + }, + { + "re": -7.5, + "im": 8.2 + }, + { + "re": 5.5, + "im": -12.3 + }, + { + "re": -15.8, + "im": 0.4 + }, + { + "re": 0.99, + "im": -0.99 + } + ] + } + ], + "returns": { + "desc": "function value", + "type": { + "javascript": "Complex128", + "jsdoc": "Complex128", + "c": "stdlib_complex128_t", + "dtype": "complex128" + } + }, + "keywords": [ + "complex", + "cmplx", + "exponential", + "exp", + "pow", + "cexp" + ], + "extra_keywords": [] + } + } }