Skip to content

Commit 6b46fb0

Browse files
committed
chore: add structured package data for math/base/special/cinvf
1 parent e80fff8 commit 6b46fb0

1 file changed

Lines changed: 119 additions & 1 deletion

File tree

  • lib/node_modules/@stdlib/math/base/special/cinvf

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

Lines changed: 119 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,123 @@
6565
"complex",
6666
"cmplx",
6767
"number"
68-
]
68+
],
69+
"__stdlib__": {
70+
"scaffold": {
71+
"$schema": "math/base@v1.0",
72+
"base_alias": "cinvf",
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+
"type": {
81+
"javascript": "Complex64",
82+
"c": "stdlib_complex64_t",
83+
"dtype": "complex64"
84+
},
85+
"description": "complex number",
86+
"example_values": [
87+
{
88+
"re": 2.0,
89+
"im": 4.0
90+
},
91+
{
92+
"re": 1.0,
93+
"im": 1.0
94+
},
95+
{
96+
"re": -1.0,
97+
"im": -1.0
98+
},
99+
{
100+
"re": 0.5,
101+
"im": 0.5
102+
},
103+
{
104+
"re": 3.0,
105+
"im": -4.0
106+
},
107+
{
108+
"re": -2.0,
109+
"im": 3.0
110+
},
111+
{
112+
"re": 1.0,
113+
"im": -2.0
114+
},
115+
{
116+
"re": -3.0,
117+
"im": 2.0
118+
},
119+
{
120+
"re": 4.0,
121+
"im": 3.0
122+
},
123+
{
124+
"re": -5.0,
125+
"im": -2.0
126+
},
127+
{
128+
"re": 2.5,
129+
"im": 1.5
130+
},
131+
{
132+
"re": -1.5,
133+
"im": 2.5
134+
},
135+
{
136+
"re": 0.25,
137+
"im": 0.75
138+
},
139+
{
140+
"re": 1.75,
141+
"im": -1.25
142+
},
143+
{
144+
"re": -0.5,
145+
"im": 1.0
146+
},
147+
{
148+
"re": 3.5,
149+
"im": 2.5
150+
},
151+
{
152+
"re": -2.5,
153+
"im": -3.5
154+
},
155+
{
156+
"re": 1.25,
157+
"im": 0.75
158+
},
159+
{
160+
"re": -4.0,
161+
"im": 1.0
162+
},
163+
{
164+
"re": 0.1,
165+
"im": 0.2
166+
}
167+
]
168+
}
169+
],
170+
"returns": {
171+
"type": {
172+
"javascript": "Complex64",
173+
"dtype": "complex64"
174+
},
175+
"description": "result"
176+
},
177+
"keywords": [
178+
"cinvf",
179+
"inv",
180+
"inverse",
181+
"reciprocal",
182+
"complex",
183+
"cmplx"
184+
]
185+
}
186+
}
69187
}

0 commit comments

Comments
 (0)