-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
496 additions
and
287 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<h3>Funktion ln()</h3> | ||
Gibt den natürlichen Logrithmus des gegebenen Ausdrucks zurück. | ||
<br> | ||
Die Funktion akzektiert ein Argument. | ||
<h4>Syntax</h4> | ||
<code>ln(wert)</code><br> | ||
|
||
<h4>Argumente</h4> | ||
<code>wert</code> - eine positive Zahl. | ||
<br> | ||
|
||
<h4>Beispiel</h4> | ||
<!-- Show example of function.--> | ||
<code>ln(1) → 0</code><br> | ||
<code>ln(2.7182818284590452354) → 1</code><br> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<h3>Funktion log()</h3> | ||
Gibt ist der Logarithmus von des übergebenen Wertes zur übergebenen Basis zurück. | ||
<br> | ||
Die Funktion akzeptiert zwei Werte. | ||
<h4>Syntax</h4> | ||
<code>log(basis, wert)</code><br> | ||
|
||
<h4>Argumente</h4> | ||
<code>basis</code> - eine positive Zahl. | ||
<code>wert</code> - eine positive Zahl. | ||
<br> | ||
|
||
<h4>Beispiel</h4> | ||
<!-- Show example of function.--> | ||
<code>log(2, 32) → 5</code><br> | ||
<code>log(0.5, 32) → -5</code><br> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<h3>Funktion log10()</h3> | ||
Gibt den Logarithmus des übergebenen Wertes zur Basis 10 zurück. | ||
<br> | ||
Diese Funktion akzeptiert ein Argument. | ||
<h4>Syntax</h4> | ||
<code>log10(wert)</code><br> | ||
|
||
<h4>Argumente</h4> | ||
<code>wert</code> - eine positive Zahl. | ||
<br> | ||
|
||
<h4>Beispiel</h4> | ||
<!-- Show example of function.--> | ||
<code>log10(1) → 0</code><br> | ||
<code>log10(100) → 2</code><br> |