Skip to content

Commit

Permalink
chore: add structured package data for math/base/special/exp
Browse files Browse the repository at this point in the history
PR-URL: #2893
Ref: #1147
Co-authored-by: Athan Reines <[email protected]>
Reviewed-by: Athan Reines <[email protected]> 
Signed-off-by: Gunj Joshi <[email protected]>
  • Loading branch information
gunjjoshi and kgryte authored Sep 16, 2024
1 parent 4340ba6 commit 595c932
Showing 1 changed file with 76 additions and 1 deletion.
77 changes: 76 additions & 1 deletion lib/node_modules/@stdlib/math/base/special/exp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,80 @@
"euler",
"power",
"number"
]
],
"__stdlib__": {
"scaffold": {
"$schema": "math/[email protected]",
"base_alias": "exp",
"alias": "exp",
"pkg_desc": "evaluate the natural exponential function",
"desc": "evaluates the natural exponential function",
"short_desc": "natural exponential function",
"parameters": [
{
"name": "x",
"desc": "input value",
"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.7,
5.5,
6.7,
8.9,
-10.2,
11.3,
-12.4,
13.5,
14.6,
-15.7,
16.8,
-17.9,
18.10,
-19.11,
20.12,
-21.15,
23.78
]
}
],
"returns": {
"desc": "function value",
"type": {
"javascript": "number",
"jsdoc": "number",
"c": "double",
"dtype": "float64"
}
},
"keywords": [
"natural",
"exponential",
"exp",
"power"
],
"extra_keywords": [
"math.exp"
]
}
}
}

1 comment on commit 595c932

@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/exp $\color{red}481/487$
$\color{green}+98.77\%$
$\color{red}21/24$
$\color{green}+87.50\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}481/487$
$\color{green}+98.77\%$

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

Please sign in to comment.