mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-16 00:03:12 -04:00
added function help for the logarithm functions
This commit is contained in:
parent
01a27bab89
commit
3c1a778662
15
resources/function_help/ln-en_US
Normal file
15
resources/function_help/ln-en_US
Normal file
@ -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) → 0</code><br>
|
||||||
|
<code>ln(e) → 1</code><br>
|
16
resources/function_help/log-en_US
Normal file
16
resources/function_help/log-en_US
Normal file
@ -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) → 5</code><br>
|
||||||
|
<code>log(0.5, 32) → -5</code><br>
|
15
resources/function_help/log10-en_US
Normal file
15
resources/function_help/log10-en_US
Normal file
@ -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) → 0</code><br>
|
||||||
|
<code>log10(100) → 2</code><br>
|
Loading…
x
Reference in New Issue
Block a user