Skip to content

Commit b651525

Browse files
committed
Auto-generated commit
1 parent 09edf9c commit b651525

File tree

2 files changed

+139
-1
lines changed

2 files changed

+139
-1
lines changed

CHANGELOG.md

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

705705
<details>
706706

707+
- [`4a6ce56`](https://github.com/stdlib-js/stdlib/commit/4a6ce56d38c164b9e8b5324c2a9155e6c2f7b7a7) - **chore:** add structured package data for `math/base/special/cphase` [(#8728)](https://github.com/stdlib-js/stdlib/pull/8728) _(by Aman Singh, Athan Reines)_
707708
- [`0eaeb22`](https://github.com/stdlib-js/stdlib/commit/0eaeb224f2b24abc3b55714aedec43596a366897) - **feat:** update math scaffold databases [(#8739)](https://github.com/stdlib-js/stdlib/pull/8739) _(by stdlib-bot)_
708709
- [`902fff9`](https://github.com/stdlib-js/stdlib/commit/902fff9a8deb6bab8a69ed301644bcb4c4e485a3) - **chore:** add structured package data for `math/base/special/cfloorf` [(#8687)](https://github.com/stdlib-js/stdlib/pull/8687) _(by Payal Goswami, Athan Reines)_
709710
- [`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)_

base/special/cphase/package.json

Lines changed: 138 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,142 @@
6565
"complex",
6666
"cmplx",
6767
"number"
68-
]
68+
],
69+
"__stdlib__": {
70+
"scaffold": {
71+
"$schema": "math/base@v1.0",
72+
"base_alias": "cphase",
73+
"alias": "cphase",
74+
"pkg_desc": "compute the argument of a double-precision complex floating-point number in radians",
75+
"desc": "computes the argument of a double-precision complex floating-point number in radians",
76+
"short_desc": "argument of a complex number",
77+
"parameters": [
78+
{
79+
"name": "z",
80+
"desc": "input value",
81+
"type": {
82+
"javascript": "Complex128",
83+
"jsdoc": "Complex128",
84+
"c": "stdlib_complex128_t",
85+
"dtype": "complex128"
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": 5,
104+
"im": 3
105+
},
106+
{
107+
"re": -5,
108+
"im": 3
109+
},
110+
{
111+
"re": 5,
112+
"im": -3
113+
},
114+
{
115+
"re": -5,
116+
"im": -3
117+
},
118+
{
119+
"re": 1,
120+
"im": 1
121+
},
122+
{
123+
"re": -1,
124+
"im": 1
125+
},
126+
{
127+
"re": 1,
128+
"im": -1
129+
},
130+
{
131+
"re": -1,
132+
"im": -1
133+
},
134+
{
135+
"re": 3,
136+
"im": 4
137+
},
138+
{
139+
"re": -3,
140+
"im": 4
141+
},
142+
{
143+
"re": 0,
144+
"im": 1
145+
},
146+
{
147+
"re": 0,
148+
"im": -1
149+
},
150+
{
151+
"re": 1,
152+
"im": 0
153+
},
154+
{
155+
"re": -1,
156+
"im": 0
157+
},
158+
{
159+
"re": 2,
160+
"im": 2
161+
},
162+
{
163+
"re": -2,
164+
"im": 2
165+
},
166+
{
167+
"re": 4,
168+
"im": 3
169+
},
170+
{
171+
"re": 6,
172+
"im": 8
173+
},
174+
{
175+
"re": 7,
176+
"im": 24
177+
},
178+
{
179+
"re": 0.5,
180+
"im": 0.5
181+
}
182+
]
183+
}
184+
],
185+
"returns": {
186+
"desc": "argument in radians",
187+
"type": {
188+
"javascript": "number",
189+
"jsdoc": "number",
190+
"c": "double",
191+
"dtype": "float64"
192+
}
193+
},
194+
"keywords": [
195+
"cphase",
196+
"phase",
197+
"argument",
198+
"arg",
199+
"angle",
200+
"complex",
201+
"cmplx"
202+
],
203+
"extra_keywords": []
204+
}
205+
}
69206
}

0 commit comments

Comments
 (0)