Skip to content

Commit eee8d1c

Browse files
committed
Auto-generated commit
1 parent 3c0cfa2 commit eee8d1c

File tree

2 files changed

+82
-2
lines changed

2 files changed

+82
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-08-29)
7+
## Unreleased (2025-08-30)
88

99
<section class="features">
1010

@@ -627,6 +627,7 @@ A total of 62 issues were closed in this release:
627627

628628
<details>
629629

630+
- [`cdd433b`](https://github.com/stdlib-js/stdlib/commit/cdd433bc46eb762ed93311b69bc69af9f92bb220) - **chore:** add structured package data for `math/base/special/sec` [(#7986)](https://github.com/stdlib-js/stdlib/pull/7986) _(by Lokesh Ranjan, Athan Reines)_
630631
- [`82547c8`](https://github.com/stdlib-js/stdlib/commit/82547c84e8e82410ec7ffecda8620f170d9bbd2a) - **chore:** add structured package data for `math/base/special/sin` [(#7985)](https://github.com/stdlib-js/stdlib/pull/7985) _(by Lokesh Ranjan, Athan Reines)_
631632
- [`4d66533`](https://github.com/stdlib-js/stdlib/commit/4d6653362c42cf824605769488c88788d2c44b8f) - **feat:** add `math/base/special/fast/absf` [(#7983)](https://github.com/stdlib-js/stdlib/pull/7983) _(by Nakul Krishnakumar, Athan Reines)_
632633
- [`81f904d`](https://github.com/stdlib-js/stdlib/commit/81f904da25808197e2ae83ebf9c8b26860855e7c) - **bench:** fix failing C benchmarks by using `round` and `roundf` [(#7980)](https://github.com/stdlib-js/stdlib/pull/7980) _(by Gunj Joshi)_

base/special/sec/package.json

Lines changed: 80 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,84 @@
6464
"trigonometry",
6565
"radians",
6666
"angle"
67-
]
67+
],
68+
"__stdlib__": {
69+
"scaffold": {
70+
"$schema": "math/[email protected]",
71+
"base_alias": "sec",
72+
"alias": "sec",
73+
"pkg_desc": "compute the secant",
74+
"desc": "computes the secant",
75+
"short_desc": "secant",
76+
"parameters": [
77+
{
78+
"name": "x",
79+
"desc": "input value (in radians)",
80+
"type": {
81+
"javascript": "number",
82+
"jsdoc": "number",
83+
"c": "double",
84+
"dtype": "float64"
85+
},
86+
"domain": [
87+
{
88+
"min": "-infinity",
89+
"max": "infinity"
90+
}
91+
],
92+
"rand": {
93+
"prng": "random/base/uniform",
94+
"parameters": [
95+
-10,
96+
10
97+
]
98+
},
99+
"example_values": [
100+
0,
101+
0.5236,
102+
0.7854,
103+
1.5708,
104+
1.0472,
105+
2.3562,
106+
3.1416,
107+
4.7124,
108+
6.2832,
109+
-0.5236,
110+
-0.7854,
111+
-1.0472,
112+
-1.5708,
113+
-2.3562,
114+
-3.1416,
115+
7.854,
116+
-7.854,
117+
0.1,
118+
-0.1,
119+
3.5
120+
]
121+
}
122+
],
123+
"output_policy": "real_floating_point_and_generic",
124+
"returns": {
125+
"desc": "secant",
126+
"type": {
127+
"javascript": "number",
128+
"jsdoc": "number",
129+
"c": "double",
130+
"dtype": "float64"
131+
}
132+
},
133+
"keywords": [
134+
"sec",
135+
"secant",
136+
"trig",
137+
"trigonometry",
138+
"cos",
139+
"cosine"
140+
],
141+
"extra_keywords": [
142+
"math.sec",
143+
"math.cos"
144+
]
145+
}
146+
}
68147
}

0 commit comments

Comments
 (0)