diff --git a/lib/node_modules/@stdlib/math/base/special/kernel-log1pf/package.json b/lib/node_modules/@stdlib/math/base/special/kernel-log1pf/package.json index 9ce9ee0cdd40..389d45c8212c 100644 --- a/lib/node_modules/@stdlib/math/base/special/kernel-log1pf/package.json +++ b/lib/node_modules/@stdlib/math/base/special/kernel-log1pf/package.json @@ -60,5 +60,84 @@ "log", "kernel", "logarithm" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "kernelLog1p", + "alias": "kernelLog1pf", + "pkg_desc": "evaluate a correction term for single-precision base-2 and base-10 logarithms when 1+f is in [√2/2, √2]", + "desc": "evaluates a correction term for single-precision base-2 and base-10 logarithms when 1+f is in [√2/2, √2]", + "short_desc": "correction term for base-2 and base-10 logarithms", + "parameters": [ + { + "name": "f", + "desc": "input value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + }, + "domain": [ + { + "min": 0.7071067811865476, + "max": 1.4142135623730951 + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + 0.7071067811865476, + 1.4142135623730951 + ] + }, + "example_values": [ + 0.7071, + 0.7856, + 0.8642, + 0.9428, + 1.0213, + 1.0999, + 1.1785, + 1.257, + 1.3356, + 1.4142, + 0.75, + 0.85, + 0.95, + 1.05, + 1.15, + 1.25, + 1.35, + 1, + 0.8, + 1.2 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "correction term", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + } + }, + "keywords": [ + "log", + "log1p", + "kernel", + "logarithm", + "correction" + ], + "extra_keywords": [ + "math.log1p", + "math.log2", + "math.log10" + ] + } + } }