Skip to content

Commit 3c1a778

Browse files
committed
added function help for the logarithm functions
1 parent 01a27ba commit 3c1a778

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed

resources/function_help/ln-en_US

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<h3>ln() function</h3>
2+
Returns the value of the natural logarithm of the passed expression.
3+
<br>
4+
This function takes one argument.
5+
<h4>Syntax</h4>
6+
<code>ln(value)</code><br>
7+
8+
<h4>Arguments</h4>
9+
<code>value</code> - any positive number.
10+
<br>
11+
12+
<h4>Example</h4>
13+
<!-- Show example of function.-->
14+
<code>ln(1) &rarr; 0</code><br>
15+
<code>ln(e) &rarr; 1</code><br>

resources/function_help/log-en_US

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<h3>log() function</h3>
2+
Returns the value of the logarithm of the passed value and base.
3+
<br>
4+
This function takes two arguments.
5+
<h4>Syntax</h4>
6+
<code>log(base, value)</code><br>
7+
8+
<h4>Arguments</h4>
9+
<code>base</code> - any positive number.
10+
<code>value</code> - any positive number.
11+
<br>
12+
13+
<h4>Example</h4>
14+
<!-- Show example of function.-->
15+
<code>log(2, 32) &rarr; 5</code><br>
16+
<code>log(0.5, 32) &rarr; -5</code><br>

resources/function_help/log10-en_US

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<h3>log10() function</h3>
2+
Returns the value of the base 10 logarithm of the passed expression.
3+
<br>
4+
This function takes one argument.
5+
<h4>Syntax</h4>
6+
<code>log10(value)</code><br>
7+
8+
<h4>Arguments</h4>
9+
<code>value</code> - any positive number.
10+
<br>
11+
12+
<h4>Example</h4>
13+
<!-- Show example of function.-->
14+
<code>log10(1) &rarr; 0</code><br>
15+
<code>log10(100) &rarr; 2</code><br>

0 commit comments

Comments
 (0)