Skip to content

Commit 75ec2df

Browse files
committed
Auto-generated commit
1 parent ebb85b2 commit 75ec2df

4 files changed

Lines changed: 319 additions & 5 deletions

File tree

CHANGELOG.md

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

1111
### Features
1212

13+
- [`ec35e72`](https://github.com/stdlib-js/stdlib/commit/ec35e72d9b49b4b5c9d908dd7a497c7368e10249) - update math scaffold databases [(#8545)](https://github.com/stdlib-js/stdlib/pull/8545)
14+
- [`c311a7c`](https://github.com/stdlib-js/stdlib/commit/c311a7cf87ca900c8494ea7a324e3e8f4d8c1329) - add `primary_dtype` for functions in `unary_function_database` [(#8538)](https://github.com/stdlib-js/stdlib/pull/8538)
1315
- [`73d9130`](https://github.com/stdlib-js/stdlib/commit/73d913013348831c3fc9f0bb6c1fa585d011bb8f) - update math scaffold databases [(#8470)](https://github.com/stdlib-js/stdlib/pull/8470)
1416
- [`80e4200`](https://github.com/stdlib-js/stdlib/commit/80e4200de213448339cf79c77c7bbd592435551e) - update math scaffold databases [(#8453)](https://github.com/stdlib-js/stdlib/pull/8453)
1517
- [`b8de2a4`](https://github.com/stdlib-js/stdlib/commit/b8de2a467a9d53deb23db7f0fcd5000e94793ad7) - update math scaffold databases
@@ -697,6 +699,9 @@ A total of 70 issues were closed in this release:
697699

698700
<details>
699701

702+
- [`ec35e72`](https://github.com/stdlib-js/stdlib/commit/ec35e72d9b49b4b5c9d908dd7a497c7368e10249) - **feat:** update math scaffold databases [(#8545)](https://github.com/stdlib-js/stdlib/pull/8545) _(by stdlib-bot)_
703+
- [`821a0bc`](https://github.com/stdlib-js/stdlib/commit/821a0bc32c11aee8fe746ad0d5d92b70dba69e4d) - **docs:** update related packages sections [(#8535)](https://github.com/stdlib-js/stdlib/pull/8535) _(by stdlib-bot)_
704+
- [`c311a7c`](https://github.com/stdlib-js/stdlib/commit/c311a7cf87ca900c8494ea7a324e3e8f4d8c1329) - **feat:** add `primary_dtype` for functions in `unary_function_database` [(#8538)](https://github.com/stdlib-js/stdlib/pull/8538) _(by Gunj Joshi)_
700705
- [`7db5b32`](https://github.com/stdlib-js/stdlib/commit/7db5b32afe976e2d3c216a45e0927c88e668d340) - **chore:** add `alias_prefix` to parent namespaces [(#8540)](https://github.com/stdlib-js/stdlib/pull/8540) _(by Gunj Joshi)_
701706
- [`5c1d94a`](https://github.com/stdlib-js/stdlib/commit/5c1d94adc310470a09ca01c7156f414fad49a73e) - **docs:** update related packages sections [(#8500)](https://github.com/stdlib-js/stdlib/pull/8500) _(by stdlib-bot)_
702707
- [`a9fb57e`](https://github.com/stdlib-js/stdlib/commit/a9fb57ec46973d10d247dfbe68d0b11a24970688) - **docs:** update descriptions _(by Philipp Burckhardt)_

base/special/ceilf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ int main( void ) {
168168

169169
## See Also
170170

171-
- <span class="package-name">[`@stdlib/math/base/special/floorf`][@stdlib/math/base/special/floorf]</span><span class="delimiter">: </span><span class="description">round a single-precision floating-point numeric value toward negative infinity.</span>
171+
- <span class="package-name">[`@stdlib/math/base/special/floorf`][@stdlib/math/base/special/floorf]</span><span class="delimiter">: </span><span class="description">round a single-precision floating-point number toward negative infinity.</span>
172172

173173
</section>
174174

special/data/unary.json

Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5089,6 +5089,141 @@
50895089
"math.cbrt"
50905090
]
50915091
},
5092+
"@stdlib/math/base/special/ccis": {
5093+
"$schema": "math/base@v1.0",
5094+
"base_alias": "cis",
5095+
"alias": "ccis",
5096+
"pkg_desc": "compute the cis function for a double-precision complex floating-point number",
5097+
"desc": "computes the cis function for a double-precision complex floating-point number",
5098+
"short_desc": "cis function",
5099+
"parameters": [
5100+
{
5101+
"name": "z",
5102+
"desc": "input value",
5103+
"type": {
5104+
"javascript": "Complex128",
5105+
"jsdoc": "Complex128",
5106+
"c": "stdlib_complex128_t",
5107+
"dtype": "complex128"
5108+
},
5109+
"domain": null,
5110+
"rand": {
5111+
"prng": "random/base/uniform",
5112+
"parameters": [
5113+
[
5114+
-50,
5115+
50
5116+
],
5117+
[
5118+
-50,
5119+
50
5120+
]
5121+
]
5122+
},
5123+
"example_values": [
5124+
{
5125+
"re": 0,
5126+
"im": 0
5127+
},
5128+
{
5129+
"re": 1,
5130+
"im": 0
5131+
},
5132+
{
5133+
"re": -3.14,
5134+
"im": -1.5
5135+
},
5136+
{
5137+
"re": -1.5,
5138+
"im": 2.5
5139+
},
5140+
{
5141+
"re": 2.5,
5142+
"im": -1.5
5143+
},
5144+
{
5145+
"re": 0,
5146+
"im": -3.7
5147+
},
5148+
{
5149+
"re": 4.2,
5150+
"im": 0
5151+
},
5152+
{
5153+
"re": 21.2,
5154+
"im": 3
5155+
},
5156+
{
5157+
"re": 11,
5158+
"im": -5
5159+
},
5160+
{
5161+
"re": 33,
5162+
"im": -14.67
5163+
},
5164+
{
5165+
"re": -42,
5166+
"im": 9.3
5167+
},
5168+
{
5169+
"re": -3,
5170+
"im": 3
5171+
},
5172+
{
5173+
"re": 73,
5174+
"im": 31
5175+
},
5176+
{
5177+
"re": -2.45,
5178+
"im": 1.23
5179+
},
5180+
{
5181+
"re": 2.45,
5182+
"im": -1.23
5183+
},
5184+
{
5185+
"re": 1.77,
5186+
"im": -3.14
5187+
},
5188+
{
5189+
"re": -7.5,
5190+
"im": 8.2
5191+
},
5192+
{
5193+
"re": 5.5,
5194+
"im": -12.3
5195+
},
5196+
{
5197+
"re": -15.8,
5198+
"im": 0.4
5199+
},
5200+
{
5201+
"re": 0.99,
5202+
"im": -0.99
5203+
}
5204+
]
5205+
}
5206+
],
5207+
"returns": {
5208+
"desc": "result",
5209+
"type": {
5210+
"javascript": "Complex128",
5211+
"jsdoc": "Complex128",
5212+
"c": "stdlib_complex128_t",
5213+
"dtype": "complex128"
5214+
}
5215+
},
5216+
"keywords": [
5217+
"cis",
5218+
"arithmetic",
5219+
"complex",
5220+
"exponential",
5221+
"euler"
5222+
],
5223+
"extra_keywords": [
5224+
"exp"
5225+
]
5226+
},
50925227
"@stdlib/number/int8/base/identity": {},
50935228
"@stdlib/number/int16/base/identity": {},
50945229
"@stdlib/number/int32/base/identity": {},
@@ -6998,6 +7133,8 @@
69987133
"math.sin"
69997134
]
70007135
},
7136+
"@stdlib/math/base/special/cphasef": {},
7137+
"@stdlib/math/base/special/cphase": {},
70017138
"@stdlib/math/base/special/cscf": {
70027139
"$schema": "math/base@v1.0",
70037140
"base_alias": "csc",

0 commit comments

Comments
 (0)