Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
325 B
Plaintext
Raw Normal View History

{
"name": "exp",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Math"],
"description": "Returns exponential of an value.",
"arguments": [{
"arg": "value",
"description": "number to return exponent of"
}],
"examples": [{
"expression": "exp(1.0)",
"returns": "2.71828182845905"
}],
"tags": ["exponential"]
}