Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
123 changes: 118 additions & 5 deletions lib/node_modules/@stdlib/number/float32/base/div/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,129 @@
"stdmath",
"mathematics",
"math",
"product",
"prod",
"multiply",
"multiplication",
"times",
"division",
"divide",
"number",
"float",
"single-precision"
],
"__stdlib__": {}
"__stdlib__": {
"scaffold": {
"$schema": "math/[email protected]",
"base_alias": "div",
"alias": "div",
"pkg_desc": "divide two single-precision floating-point numbers",
"desc": "divides two single-precision floating-point numbers",
"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": [
"division",
"divide",
"div"
],
"extra_keywords": []
}
}
}