Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

chore: add structured package data for packages in math/base/special #8033

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
kgryte merged 1 commit into stdlib-js:develop from gunjjoshi:metadata
Sep 7, 2025
Merged
Show file tree
Hide file tree
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
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,94 @@
"trigonometry",
"radians",
"angle"
]
],
"__stdlib__": {
"scaffold": {
"$schema": "math/base@v1.0",
"base_alias": "acoversin",
"alias": "acoversin",
"pkg_desc": "compute the inverse coversed sine of a double-precision floating-point number (in radians)",
"desc": "computes the inverse coversed sine of a double-precision floating-point number (in radians)",
"short_desc": "inverse coversed sine",
"parameters": [
{
"name": "x",
"desc": "input value (in radians)",
"type": {
"javascript": "number",
"jsdoc": "number",
"c": "double",
"dtype": "float64"
},
"domain": [
{
"min": 0,
"max": 2
}
],
"rand": {
"prng": "random/base/uniform",
"parameters": [
0,
2
]
},
"example_values": [
0,
0.05,
0.12,
0.27,
0.33,
0.48,
0.58,
0.65,
0.71,
0.84,
0.9,
1.11,
1.18,
1.25,
1.37,
1.52,
1.66,
1.74,
1.79,
1.93
]
}
],
"output_policy": "real_floating_point_and_generic",
"returns": {
"desc": "inverse coversed sine",
"type": {
"javascript": "number",
"jsdoc": "number",
"c": "double",
"dtype": "float64"
}
},
"keywords": [
"acoversin",
"acoversine",
"arccoversin",
"arccoversine",
"coversed sine",
"versed sine",
"acoversinus",
"arcvers",
"covers",
"cover",
"acvs",
"arc",
"versed",
"coversed",
"sine",
"sin",
"asin"
],
"extra_keywords": [
"math.asin"
]
}
}
}
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,94 @@
"trigonometry",
"radians",
"angle"
]
],
"__stdlib__": {
"scaffold": {
"$schema": "math/base@v1.0",
"base_alias": "acoversin",
"alias": "acoversinf",
"pkg_desc": "compute the inverse coversed sine of a single-precision floating-point number (in radians)",
"desc": "computes the inverse coversed sine of a single-precision floating-point number (in radians)",
"short_desc": "inverse coversed sine",
"parameters": [
{
"name": "x",
"desc": "input value (in radians)",
"type": {
"javascript": "number",
"jsdoc": "number",
"c": "float",
"dtype": "float32"
},
"domain": [
{
"min": 0,
"max": 2
}
],
"rand": {
"prng": "random/base/uniform",
"parameters": [
0,
2
]
},
"example_values": [
0,
0.05,
0.12,
0.27,
0.33,
0.48,
0.58,
0.65,
0.71,
0.84,
0.9,
1.11,
1.18,
1.25,
1.37,
1.52,
1.66,
1.74,
1.79,
1.93
]
}
],
"output_policy": "real_floating_point_and_generic",
"returns": {
"desc": "inverse coversed sine",
"type": {
"javascript": "number",
"jsdoc": "number",
"c": "float",
"dtype": "float32"
}
},
"keywords": [
"acoversin",
"acoversine",
"arccoversin",
"arccoversine",
"coversed sine",
"versed sine",
"acoversinus",
"arcvers",
"covers",
"cover",
"acvs",
"arc",
"versed",
"coversed",
"sine",
"sin",
"asin"
],
"extra_keywords": [
"math.asin"
]
}
}
}
83 changes: 82 additions & 1 deletion lib/node_modules/@stdlib/math/base/special/acscd/package.json
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,86 @@
"trig",
"trigonometry",
"radians"
]
],
"__stdlib__": {
"scaffold": {
"$schema": "math/base@v1.0",
"base_alias": "acscd",
"alias": "acscd",
"pkg_desc": "compute the arccosecant (in degrees) of a double-precision floating-point number",
"desc": "computes the arccosecant (in degrees) of a double-precision floating-point number",
"short_desc": "arccosecant (degrees)",
"parameters": [
{
"name": "x",
"desc": "input value",
"type": {
"javascript": "number",
"jsdoc": "number",
"c": "double",
"dtype": "float64"
},
"domain": [
{
"min": "-infinity",
"max": -1
},
{
"min": 1,
"max": "infinity"
}
],
"rand": {
"prng": "random/base/uniform",
"parameters": [
1.1,
10
]
},
"example_values": [
-20,
-12.5,
-9.9,
-8.2,
-4.4,
-3.7,
-2.6,
-2,
-1.3,
-1.1,
1.1,
1.5,
2.5,
3.3,
5,
7.7,
10,
12.5,
15,
20
]
}
],
"output_policy": "real_floating_point_and_generic",
"returns": {
"desc": "arccosecant (degrees)",
"type": {
"javascript": "number",
"jsdoc": "number",
"c": "double",
"dtype": "float64"
}
},
"keywords": [
"asin",
"degree",
"arccosecant",
"sine",
"inverse"
],
"extra_keywords": [
"math.asin"
]
}
}
}
85 changes: 83 additions & 2 deletions lib/node_modules/@stdlib/math/base/special/acscdf/package.json
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"stdmath",
"mathematics",
"math",
"math.acsc",
"math.asin",
"acsc",
"degree",
"arccosecant",
Expand All @@ -65,5 +65,86 @@
"trig",
"trigonometry",
"radians"
]
],
"__stdlib__": {
"scaffold": {
"$schema": "math/base@v1.0",
"base_alias": "acscd",
"alias": "acscdf",
"pkg_desc": "compute the arccosecant (in degrees) of a single-precision floating-point number",
"desc": "computes the arccosecant (in degrees) of a single-precision floating-point number",
"short_desc": "arccosecant (degrees)",
"parameters": [
{
"name": "x",
"desc": "input value",
"type": {
"javascript": "number",
"jsdoc": "number",
"c": "float",
"dtype": "float32"
},
"domain": [
{
"min": "-infinity",
"max": -1
},
{
"min": 1,
"max": "infinity"
}
],
"rand": {
"prng": "random/base/uniform",
"parameters": [
1.1,
5.1
]
},
"example_values": [
-20,
-12.5,
-9.9,
-8.2,
-4.4,
-3.7,
-2.6,
-2,
-1.3,
-1.1,
1.1,
1.5,
2.5,
3.3,
5,
7.7,
10,
12.5,
15,
20
]
}
],
"output_policy": "real_floating_point_and_generic",
"returns": {
"desc": "arccosecant (degrees)",
"type": {
"javascript": "number",
"jsdoc": "number",
"c": "float",
"dtype": "float32"
}
},
"keywords": [
"acsc",
"degree",
"arccosecant",
"cosecant",
"inverse"
],
"extra_keywords": [
"math.asin"
]
}
}
}
Loading

AltStyle によって変換されたページ (->オリジナル) /