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

19 lines
403 B
Plaintext
Raw Normal View History

{
"name": "log10",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Math"],
"description": "Returns the value of the base 10 logarithm of the passed expression.",
"arguments": [{
"arg": "value",
"description": "any positive number"
}],
"examples": [{
"expression": "log10(1)",
"returns": "0"
}, {
"expression": "log10(100)",
"returns": "2"
}],
"tags": ["base", "logarithm"]
}