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

Commit 5dbe6e4

Browse files
chore: add structured package data for packages in math/base/special
PR-URL: #8033 Ref: #7924 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 4b805c3 commit 5dbe6e4

File tree

8 files changed

+707
-9
lines changed

8 files changed

+707
-9
lines changed

‎lib/node_modules/@stdlib/math/base/special/acoversin/package.json

Lines changed: 90 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,94 @@
7777
"trigonometry",
7878
"radians",
7979
"angle"
80-
]
80+
],
81+
"__stdlib__": {
82+
"scaffold": {
83+
"$schema": "math/base@v1.0",
84+
"base_alias": "acoversin",
85+
"alias": "acoversin",
86+
"pkg_desc": "compute the inverse coversed sine of a double-precision floating-point number (in radians)",
87+
"desc": "computes the inverse coversed sine of a double-precision floating-point number (in radians)",
88+
"short_desc": "inverse coversed sine",
89+
"parameters": [
90+
{
91+
"name": "x",
92+
"desc": "input value (in radians)",
93+
"type": {
94+
"javascript": "number",
95+
"jsdoc": "number",
96+
"c": "double",
97+
"dtype": "float64"
98+
},
99+
"domain": [
100+
{
101+
"min": 0,
102+
"max": 2
103+
}
104+
],
105+
"rand": {
106+
"prng": "random/base/uniform",
107+
"parameters": [
108+
0,
109+
2
110+
]
111+
},
112+
"example_values": [
113+
0,
114+
0.05,
115+
0.12,
116+
0.27,
117+
0.33,
118+
0.48,
119+
0.58,
120+
0.65,
121+
0.71,
122+
0.84,
123+
0.9,
124+
1.11,
125+
1.18,
126+
1.25,
127+
1.37,
128+
1.52,
129+
1.66,
130+
1.74,
131+
1.79,
132+
1.93
133+
]
134+
}
135+
],
136+
"output_policy": "real_floating_point_and_generic",
137+
"returns": {
138+
"desc": "inverse coversed sine",
139+
"type": {
140+
"javascript": "number",
141+
"jsdoc": "number",
142+
"c": "double",
143+
"dtype": "float64"
144+
}
145+
},
146+
"keywords": [
147+
"acoversin",
148+
"acoversine",
149+
"arccoversin",
150+
"arccoversine",
151+
"coversed sine",
152+
"versed sine",
153+
"acoversinus",
154+
"arcvers",
155+
"covers",
156+
"cover",
157+
"acvs",
158+
"arc",
159+
"versed",
160+
"coversed",
161+
"sine",
162+
"sin",
163+
"asin"
164+
],
165+
"extra_keywords": [
166+
"math.asin"
167+
]
168+
}
169+
}
81170
}

‎lib/node_modules/@stdlib/math/base/special/acoversinf/package.json

Lines changed: 90 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,94 @@
7777
"trigonometry",
7878
"radians",
7979
"angle"
80-
]
80+
],
81+
"__stdlib__": {
82+
"scaffold": {
83+
"$schema": "math/base@v1.0",
84+
"base_alias": "acoversin",
85+
"alias": "acoversinf",
86+
"pkg_desc": "compute the inverse coversed sine of a single-precision floating-point number (in radians)",
87+
"desc": "computes the inverse coversed sine of a single-precision floating-point number (in radians)",
88+
"short_desc": "inverse coversed sine",
89+
"parameters": [
90+
{
91+
"name": "x",
92+
"desc": "input value (in radians)",
93+
"type": {
94+
"javascript": "number",
95+
"jsdoc": "number",
96+
"c": "float",
97+
"dtype": "float32"
98+
},
99+
"domain": [
100+
{
101+
"min": 0,
102+
"max": 2
103+
}
104+
],
105+
"rand": {
106+
"prng": "random/base/uniform",
107+
"parameters": [
108+
0,
109+
2
110+
]
111+
},
112+
"example_values": [
113+
0,
114+
0.05,
115+
0.12,
116+
0.27,
117+
0.33,
118+
0.48,
119+
0.58,
120+
0.65,
121+
0.71,
122+
0.84,
123+
0.9,
124+
1.11,
125+
1.18,
126+
1.25,
127+
1.37,
128+
1.52,
129+
1.66,
130+
1.74,
131+
1.79,
132+
1.93
133+
]
134+
}
135+
],
136+
"output_policy": "real_floating_point_and_generic",
137+
"returns": {
138+
"desc": "inverse coversed sine",
139+
"type": {
140+
"javascript": "number",
141+
"jsdoc": "number",
142+
"c": "float",
143+
"dtype": "float32"
144+
}
145+
},
146+
"keywords": [
147+
"acoversin",
148+
"acoversine",
149+
"arccoversin",
150+
"arccoversine",
151+
"coversed sine",
152+
"versed sine",
153+
"acoversinus",
154+
"arcvers",
155+
"covers",
156+
"cover",
157+
"acvs",
158+
"arc",
159+
"versed",
160+
"coversed",
161+
"sine",
162+
"sin",
163+
"asin"
164+
],
165+
"extra_keywords": [
166+
"math.asin"
167+
]
168+
}
169+
}
81170
}

‎lib/node_modules/@stdlib/math/base/special/acscd/package.json

Lines changed: 82 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,86 @@
6565
"trig",
6666
"trigonometry",
6767
"radians"
68-
]
68+
],
69+
"__stdlib__": {
70+
"scaffold": {
71+
"$schema": "math/base@v1.0",
72+
"base_alias": "acscd",
73+
"alias": "acscd",
74+
"pkg_desc": "compute the arccosecant (in degrees) of a double-precision floating-point number",
75+
"desc": "computes the arccosecant (in degrees) of a double-precision floating-point number",
76+
"short_desc": "arccosecant (degrees)",
77+
"parameters": [
78+
{
79+
"name": "x",
80+
"desc": "input value",
81+
"type": {
82+
"javascript": "number",
83+
"jsdoc": "number",
84+
"c": "double",
85+
"dtype": "float64"
86+
},
87+
"domain": [
88+
{
89+
"min": "-infinity",
90+
"max": -1
91+
},
92+
{
93+
"min": 1,
94+
"max": "infinity"
95+
}
96+
],
97+
"rand": {
98+
"prng": "random/base/uniform",
99+
"parameters": [
100+
1.1,
101+
10
102+
]
103+
},
104+
"example_values": [
105+
-20,
106+
-12.5,
107+
-9.9,
108+
-8.2,
109+
-4.4,
110+
-3.7,
111+
-2.6,
112+
-2,
113+
-1.3,
114+
-1.1,
115+
1.1,
116+
1.5,
117+
2.5,
118+
3.3,
119+
5,
120+
7.7,
121+
10,
122+
12.5,
123+
15,
124+
20
125+
]
126+
}
127+
],
128+
"output_policy": "real_floating_point_and_generic",
129+
"returns": {
130+
"desc": "arccosecant (degrees)",
131+
"type": {
132+
"javascript": "number",
133+
"jsdoc": "number",
134+
"c": "double",
135+
"dtype": "float64"
136+
}
137+
},
138+
"keywords": [
139+
"asin",
140+
"degree",
141+
"arccosecant",
142+
"sine",
143+
"inverse"
144+
],
145+
"extra_keywords": [
146+
"math.asin"
147+
]
148+
}
149+
}
69150
}

‎lib/node_modules/@stdlib/math/base/special/acscdf/package.json

Lines changed: 83 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"stdmath",
5757
"mathematics",
5858
"math",
59-
"math.acsc",
59+
"math.asin",
6060
"acsc",
6161
"degree",
6262
"arccosecant",
@@ -65,5 +65,86 @@
6565
"trig",
6666
"trigonometry",
6767
"radians"
68-
]
68+
],
69+
"__stdlib__": {
70+
"scaffold": {
71+
"$schema": "math/base@v1.0",
72+
"base_alias": "acscd",
73+
"alias": "acscdf",
74+
"pkg_desc": "compute the arccosecant (in degrees) of a single-precision floating-point number",
75+
"desc": "computes the arccosecant (in degrees) of a single-precision floating-point number",
76+
"short_desc": "arccosecant (degrees)",
77+
"parameters": [
78+
{
79+
"name": "x",
80+
"desc": "input value",
81+
"type": {
82+
"javascript": "number",
83+
"jsdoc": "number",
84+
"c": "float",
85+
"dtype": "float32"
86+
},
87+
"domain": [
88+
{
89+
"min": "-infinity",
90+
"max": -1
91+
},
92+
{
93+
"min": 1,
94+
"max": "infinity"
95+
}
96+
],
97+
"rand": {
98+
"prng": "random/base/uniform",
99+
"parameters": [
100+
1.1,
101+
5.1
102+
]
103+
},
104+
"example_values": [
105+
-20,
106+
-12.5,
107+
-9.9,
108+
-8.2,
109+
-4.4,
110+
-3.7,
111+
-2.6,
112+
-2,
113+
-1.3,
114+
-1.1,
115+
1.1,
116+
1.5,
117+
2.5,
118+
3.3,
119+
5,
120+
7.7,
121+
10,
122+
12.5,
123+
15,
124+
20
125+
]
126+
}
127+
],
128+
"output_policy": "real_floating_point_and_generic",
129+
"returns": {
130+
"desc": "arccosecant (degrees)",
131+
"type": {
132+
"javascript": "number",
133+
"jsdoc": "number",
134+
"c": "float",
135+
"dtype": "float32"
136+
}
137+
},
138+
"keywords": [
139+
"acsc",
140+
"degree",
141+
"arccosecant",
142+
"cosecant",
143+
"inverse"
144+
],
145+
"extra_keywords": [
146+
"math.asin"
147+
]
148+
}
149+
}
69150
}

0 commit comments

Comments
(0)

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