Skip to content

Commit 51c0c5d

Browse files
committed
Auto-generated commit
1 parent 0c2ea34 commit 51c0c5d

File tree

2 files changed

+137
-1
lines changed

2 files changed

+137
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
### Features
1212

13+
- [`42b871c`](https://github.com/stdlib-js/stdlib/commit/42b871c36e81b4b81737c9007b431e005adebaea) - update math scaffold databases [(#8764)](https://github.com/stdlib-js/stdlib/pull/8764)
1314
- [`6838830`](https://github.com/stdlib-js/stdlib/commit/6838830a8b3d310296bae08a191051a163a804ca) - update math scaffold databases [(#8740)](https://github.com/stdlib-js/stdlib/pull/8740)
1415
- [`0eaeb22`](https://github.com/stdlib-js/stdlib/commit/0eaeb224f2b24abc3b55714aedec43596a366897) - update math scaffold databases [(#8739)](https://github.com/stdlib-js/stdlib/pull/8739)
1516
- [`f20489f`](https://github.com/stdlib-js/stdlib/commit/f20489f55e89e7d20640dfe2e05a80c9a0ec6f11) - add `math/base/special/log1pf` [(#5803)](https://github.com/stdlib-js/stdlib/pull/5803)
@@ -705,6 +706,7 @@ A total of 72 issues were closed in this release:
705706

706707
<details>
707708

709+
- [`42b871c`](https://github.com/stdlib-js/stdlib/commit/42b871c36e81b4b81737c9007b431e005adebaea) - **feat:** update math scaffold databases [(#8764)](https://github.com/stdlib-js/stdlib/pull/8764) _(by stdlib-bot)_
708710
- [`da3c88a`](https://github.com/stdlib-js/stdlib/commit/da3c88a5810677cb4d5d5f1060427448448c7ae3) - **chore:** add structured package data for `math/base/special/cphasef` [(#8751)](https://github.com/stdlib-js/stdlib/pull/8751) _(by Aman Singh, Athan Reines)_
709711
- [`6838830`](https://github.com/stdlib-js/stdlib/commit/6838830a8b3d310296bae08a191051a163a804ca) - **feat:** update math scaffold databases [(#8740)](https://github.com/stdlib-js/stdlib/pull/8740) _(by stdlib-bot)_
710712
- [`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)_

special/data/unary.json

Lines changed: 135 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7133,7 +7133,141 @@
71337133
"math.sin"
71347134
]
71357135
},
7136-
"@stdlib/math/base/special/cphasef": {},
7136+
"@stdlib/math/base/special/cphasef": {
7137+
"$schema": "math/base@v1.0",
7138+
"base_alias": "cphase",
7139+
"alias": "cphasef",
7140+
"pkg_desc": "compute the argument of a single-precision complex floating-point number in radians",
7141+
"desc": "computes the argument of a single-precision complex floating-point number in radians",
7142+
"short_desc": "argument of a complex number",
7143+
"parameters": [
7144+
{
7145+
"name": "z",
7146+
"desc": "input value",
7147+
"type": {
7148+
"javascript": "Complex64",
7149+
"jsdoc": "Complex64",
7150+
"c": "stdlib_complex64_t",
7151+
"dtype": "complex64"
7152+
},
7153+
"domain": null,
7154+
"rand": {
7155+
"prng": "random/base/uniform",
7156+
"parameters": [
7157+
[
7158+
-10,
7159+
10
7160+
],
7161+
[
7162+
-10,
7163+
10
7164+
]
7165+
]
7166+
},
7167+
"example_values": [
7168+
{
7169+
"re": 5,
7170+
"im": 3
7171+
},
7172+
{
7173+
"re": -5,
7174+
"im": 3
7175+
},
7176+
{
7177+
"re": 5,
7178+
"im": -3
7179+
},
7180+
{
7181+
"re": -5,
7182+
"im": -3
7183+
},
7184+
{
7185+
"re": 1,
7186+
"im": 1
7187+
},
7188+
{
7189+
"re": -1,
7190+
"im": 1
7191+
},
7192+
{
7193+
"re": 1,
7194+
"im": -1
7195+
},
7196+
{
7197+
"re": -1,
7198+
"im": -1
7199+
},
7200+
{
7201+
"re": 3,
7202+
"im": 4
7203+
},
7204+
{
7205+
"re": -3,
7206+
"im": 4
7207+
},
7208+
{
7209+
"re": 0,
7210+
"im": 1
7211+
},
7212+
{
7213+
"re": 0,
7214+
"im": -1
7215+
},
7216+
{
7217+
"re": 1,
7218+
"im": 0
7219+
},
7220+
{
7221+
"re": -1,
7222+
"im": 0
7223+
},
7224+
{
7225+
"re": 2,
7226+
"im": 2
7227+
},
7228+
{
7229+
"re": -2,
7230+
"im": 2
7231+
},
7232+
{
7233+
"re": 4,
7234+
"im": 3
7235+
},
7236+
{
7237+
"re": 6,
7238+
"im": 8
7239+
},
7240+
{
7241+
"re": 7,
7242+
"im": 24
7243+
},
7244+
{
7245+
"re": 0.5,
7246+
"im": 0.5
7247+
}
7248+
]
7249+
}
7250+
],
7251+
"returns": {
7252+
"desc": "argument in radians",
7253+
"type": {
7254+
"javascript": "number",
7255+
"jsdoc": "number",
7256+
"c": "float",
7257+
"dtype": "float32"
7258+
}
7259+
},
7260+
"keywords": [
7261+
"cphase",
7262+
"phase",
7263+
"argument",
7264+
"arg",
7265+
"angle",
7266+
"complex",
7267+
"cmplx"
7268+
],
7269+
"extra_keywords": []
7270+
},
71377271
"@stdlib/math/base/special/cphase": {
71387272
"$schema": "math/base@v1.0",
71397273
"base_alias": "cphase",

0 commit comments

Comments
 (0)