diff --git a/lib/node_modules/@stdlib/math/base/special/cinvf/package.json b/lib/node_modules/@stdlib/math/base/special/cinvf/package.json index eb73410cb1e3..aa943a284f58 100644 --- a/lib/node_modules/@stdlib/math/base/special/cinvf/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cinvf/package.json @@ -65,5 +65,141 @@ "complex", "cmplx", "number" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "cinv", + "alias": "cinvf", + "pkg_desc": "compute the inverse of a single-precision complex floating-point number", + "desc": "computes the inverse of a single-precision complex floating-point number", + "short_desc": "inverse of a single-precision complex number", + "parameters": [ + { + "name": "z", + "desc": "input value", + "type": { + "javascript": "Complex64", + "jsdoc": "Complex64", + "c": "stdlib_complex64_t", + "dtype": "complex64" + }, + "domain": null, + "rand": { + "prng": "random/base/uniform", + "parameters": [ + [ + -10, + 10 + ], + [ + -10, + 10 + ] + ] + }, + "example_values": [ + { + "re": 2, + "im": 4 + }, + { + "re": 1, + "im": 1 + }, + { + "re": -1, + "im": -1 + }, + { + "re": 0.5, + "im": 0.5 + }, + { + "re": 3, + "im": -4 + }, + { + "re": -2, + "im": 3 + }, + { + "re": 1, + "im": -2 + }, + { + "re": -3, + "im": 2 + }, + { + "re": 4, + "im": 3 + }, + { + "re": -5, + "im": -2 + }, + { + "re": 2.5, + "im": 1.5 + }, + { + "re": -1.5, + "im": 2.5 + }, + { + "re": 0.25, + "im": 0.75 + }, + { + "re": 1.75, + "im": -1.25 + }, + { + "re": -0.5, + "im": 1 + }, + { + "re": 3.5, + "im": 2.5 + }, + { + "re": -2.5, + "im": -3.5 + }, + { + "re": 1.25, + "im": 0.75 + }, + { + "re": -4, + "im": 1 + }, + { + "re": 0.1, + "im": 0.2 + } + ] + } + ], + "returns": { + "desc": "result", + "type": { + "javascript": "Complex64", + "jsdoc": "Complex64", + "c": "stdlib_complex64_t", + "dtype": "complex64" + } + }, + "keywords": [ + "cinv", + "inv", + "inverse", + "reciprocal", + "complex", + "cmplx" + ], + "extra_keywords": [] + } + } }