Skip to content

Commit 6929004

Browse files
committed
chore: add structured package data for math/base/special/cinv
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: passed - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent e964c37 commit 6929004

1 file changed

Lines changed: 140 additions & 1 deletion

File tree

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

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

0 commit comments

Comments
 (0)