Skip to content

Commit 55ed747

Browse files
chore: add structured package data for math/base/special/cinvf
PR-URL: #8710 Ref: #7924 Co-authored-by: Athan Reines <kgryte@gmail.com> Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 3e95cb4 commit 55ed747

File tree

1 file changed

+137
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/cinvf

1 file changed

+137
-1
lines changed

lib/node_modules/@stdlib/math/base/special/cinvf/package.json

Lines changed: 137 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,141 @@
6565
"complex",
6666
"cmplx",
6767
"number"
68-
]
68+
],
69+
"__stdlib__": {
70+
"scaffold": {
71+
"$schema": "math/base@v1.0",
72+
"base_alias": "cinv",
73+
"alias": "cinvf",
74+
"pkg_desc": "compute the inverse of a single-precision complex floating-point number",
75+
"desc": "computes the inverse of a single-precision complex floating-point number",
76+
"short_desc": "inverse of a single-precision complex number",
77+
"parameters": [
78+
{
79+
"name": "z",
80+
"desc": "input value",
81+
"type": {
82+
"javascript": "Complex64",
83+
"jsdoc": "Complex64",
84+
"c": "stdlib_complex64_t",
85+
"dtype": "complex64"
86+
},
87+
"domain": null,
88+
"rand": {
89+
"prng": "random/base/uniform",
90+
"parameters": [
91+
[
92+
-10,
93+
10
94+
],
95+
[
96+
-10,
97+
10
98+
]
99+
]
100+
},
101+
"example_values": [
102+
{
103+
"re": 2,
104+
"im": 4
105+
},
106+
{
107+
"re": 1,
108+
"im": 1
109+
},
110+
{
111+
"re": -1,
112+
"im": -1
113+
},
114+
{
115+
"re": 0.5,
116+
"im": 0.5
117+
},
118+
{
119+
"re": 3,
120+
"im": -4
121+
},
122+
{
123+
"re": -2,
124+
"im": 3
125+
},
126+
{
127+
"re": 1,
128+
"im": -2
129+
},
130+
{
131+
"re": -3,
132+
"im": 2
133+
},
134+
{
135+
"re": 4,
136+
"im": 3
137+
},
138+
{
139+
"re": -5,
140+
"im": -2
141+
},
142+
{
143+
"re": 2.5,
144+
"im": 1.5
145+
},
146+
{
147+
"re": -1.5,
148+
"im": 2.5
149+
},
150+
{
151+
"re": 0.25,
152+
"im": 0.75
153+
},
154+
{
155+
"re": 1.75,
156+
"im": -1.25
157+
},
158+
{
159+
"re": -0.5,
160+
"im": 1
161+
},
162+
{
163+
"re": 3.5,
164+
"im": 2.5
165+
},
166+
{
167+
"re": -2.5,
168+
"im": -3.5
169+
},
170+
{
171+
"re": 1.25,
172+
"im": 0.75
173+
},
174+
{
175+
"re": -4,
176+
"im": 1
177+
},
178+
{
179+
"re": 0.1,
180+
"im": 0.2
181+
}
182+
]
183+
}
184+
],
185+
"returns": {
186+
"desc": "result",
187+
"type": {
188+
"javascript": "Complex64",
189+
"jsdoc": "Complex64",
190+
"c": "stdlib_complex64_t",
191+
"dtype": "complex64"
192+
}
193+
},
194+
"keywords": [
195+
"cinv",
196+
"inv",
197+
"inverse",
198+
"reciprocal",
199+
"complex",
200+
"cmplx"
201+
],
202+
"extra_keywords": []
203+
}
204+
}
69205
}

0 commit comments

Comments
 (0)