Skip to content

Commit 74c02ff

Browse files
committed
Auto-generated commit
1 parent 0729f36 commit 74c02ff

File tree

2 files changed

+138
-1
lines changed

2 files changed

+138
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -703,6 +703,7 @@ A total of 72 issues were closed in this release:
703703

704704
<details>
705705

706+
- [`55ed747`](https://github.com/stdlib-js/stdlib/commit/55ed7477ca69967c364c52e112c48bfda29c9948) - **chore:** add structured package data for `math/base/special/cinvf` [(#8710)](https://github.com/stdlib-js/stdlib/pull/8710) _(by Aman Singh, Athan Reines)_
706707
- [`f20489f`](https://github.com/stdlib-js/stdlib/commit/f20489f55e89e7d20640dfe2e05a80c9a0ec6f11) - **feat:** add `math/base/special/log1pf` [(#5803)](https://github.com/stdlib-js/stdlib/pull/5803) _(by Prashant Kumar Yadav, Athan Reines, stdlib-bot, Gunj Joshi, Karan Anand)_
707708
- [`6c66165`](https://github.com/stdlib-js/stdlib/commit/6c66165552b1a15f06410c5a9068f60f0a651323) - **chore:** fix C lint errors [(#8727)](https://github.com/stdlib-js/stdlib/pull/8727) _(by Geo Daoyu)_
708709
- [`92dc7c2`](https://github.com/stdlib-js/stdlib/commit/92dc7c2bea09a0f1d6d12d9048381cc8bcc99fe3) - **docs:** fix TSDoc return annotation values and example code _(by Philipp Burckhardt)_

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)