diff --git a/lib/node_modules/@stdlib/math/base/special/sindf/package.json b/lib/node_modules/@stdlib/math/base/special/sindf/package.json index f1fbcb475eb9..94582fb07aa3 100644 --- a/lib/node_modules/@stdlib/math/base/special/sindf/package.json +++ b/lib/node_modules/@stdlib/math/base/special/sindf/package.json @@ -59,8 +59,86 @@ "degree", "sin", "sine", - "sindf", + "sind", "trig", "trigonometry" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "sind", + "alias": "sindf", + "pkg_desc": "compute the sine of a single-precision floating-point number (in degrees)", + "desc": "computes the sine of a single-precision floating-point number (in degrees)", + "short_desc": "sine", + "parameters": [ + { + "name": "x", + "desc": "input value (in degrees)", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + }, + "domain": [ + { + "min": "-infinity", + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + -360, + 360 + ] + }, + "example_values": [ + 0, + 30, + 45, + 60, + 90, + 120, + 150, + 180, + 270, + 360, + -30, + -45, + -60, + -90, + -180, + -270, + -360, + 15, + -15, + 75 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "sine", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + } + }, + "keywords": [ + "degree", + "sin", + "sine", + "sind", + "trig", + "trigonometry" + ], + "extra_keywords": [ + "math.sin" + ] + } + } }