Skip to content

Commit

Permalink
added function help for the logarithm functions
Browse files Browse the repository at this point in the history
  • Loading branch information
lynxlynxlynx committed Sep 28, 2012
1 parent 01a27ba commit 3c1a778
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
15 changes: 15 additions & 0 deletions resources/function_help/ln-en_US
@@ -0,0 +1,15 @@
<h3>ln() function</h3>
Returns the value of the natural logarithm of the passed expression.
<br>
This function takes one argument.
<h4>Syntax</h4>
<code>ln(value)</code><br>

<h4>Arguments</h4>
<code>value</code> - any positive number.
<br>

<h4>Example</h4>
<!-- Show example of function.-->
<code>ln(1) &rarr; 0</code><br>
<code>ln(e) &rarr; 1</code><br>
16 changes: 16 additions & 0 deletions resources/function_help/log-en_US
@@ -0,0 +1,16 @@
<h3>log() function</h3>
Returns the value of the logarithm of the passed value and base.
<br>
This function takes two arguments.
<h4>Syntax</h4>
<code>log(base, value)</code><br>

<h4>Arguments</h4>
<code>base</code> - any positive number.
<code>value</code> - any positive number.
<br>

<h4>Example</h4>
<!-- Show example of function.-->
<code>log(2, 32) &rarr; 5</code><br>
<code>log(0.5, 32) &rarr; -5</code><br>
15 changes: 15 additions & 0 deletions resources/function_help/log10-en_US
@@ -0,0 +1,15 @@
<h3>log10() function</h3>
Returns the value of the base 10 logarithm of the passed expression.
<br>
This function takes one argument.
<h4>Syntax</h4>
<code>log10(value)</code><br>

<h4>Arguments</h4>
<code>value</code> - any positive number.
<br>

<h4>Example</h4>
<!-- Show example of function.-->
<code>log10(1) &rarr; 0</code><br>
<code>log10(100) &rarr; 2</code><br>

0 comments on commit 3c1a778

Please sign in to comment.