Skip to content

Commit

Permalink
chore: add structured package data for math/base/special/pow
Browse files Browse the repository at this point in the history
PR-URL: #2912
Ref: #1147
Reviewed-by: Athan Reines <[email protected]>
  • Loading branch information
gunjjoshi authored Sep 17, 2024
1 parent 2658654 commit f51140f
Showing 1 changed file with 121 additions and 1 deletion.
122 changes: 121 additions & 1 deletion lib/node_modules/@stdlib/math/base/special/pow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,125 @@
"exponential",
"function",
"number"
]
],
"__stdlib__": {
"scaffold": {
"$schema": "math/[email protected]",
"base_alias": "pow",
"alias": "pow",
"pkg_desc": "exponential function",
"desc": "exponential function",
"short_desc": "exponential function",
"parameters": [
{
"name": "x",
"desc": "base",
"type": {
"javascript": "number",
"jsdoc": "number",
"c": "double",
"dtype": "float64"
},
"domain": [
{
"min": "-infinity",
"max": "infinity"
}
],
"rand": {
"prng": "random/base/uniform",
"parameters": [
-10.0,
10.0
]
},
"example_values": [
-1.2,
2.0,
-3.1,
4.0,
5.5,
100.0,
8.9,
3.141592653589793,
11.3,
-3.141592653589793,
13.5,
14.6,
-15.7,
16.8,
-17.9,
10.0,
-19.11,
20.12,
-21.15,
1.0
]
},
{
"name": "y",
"desc": "exponent",
"type": {
"javascript": "number",
"jsdoc": "number",
"c": "double",
"dtype": "float64"
},
"domain": [
{
"min": "-infinity",
"max": "infinity"
}
],
"rand": {
"prng": "random/base/uniform",
"parameters": [
-10.0,
10.0
]
},
"example_values": [
1.2,
-2.0,
3.0,
-0.5,
0.0,
-5.6,
8.9,
-10.0,
1.5,
-12.0,
13.5,
14.6,
-15.7,
6.0,
-17.0,
18.0,
-9.0,
2.12,
-1.15,
-2.0
]
}
],
"returns": {
"desc": "function value",
"type": {
"javascript": "number",
"jsdoc": "number",
"c": "double",
"dtype": "float64"
}
},
"keywords": [
"natural",
"exponential",
"pow",
"power"
],
"extra_keywords": [
"math.pow"
]
}
}
}

1 comment on commit f51140f

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
math/base/special/pow $\color{red}1384/1386$
$\color{green}+99.86\%$
$\color{red}119/120$
$\color{green}+99.17\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{red}1384/1386$
$\color{green}+99.86\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.