From df5f837e0a10d71ca9beb81edb2aad29466515b6 Mon Sep 17 00:00:00 2001 From: Axel Kramer Date: Tue, 19 Dec 2023 18:23:44 +0100 Subject: [PATCH] Update 01-getting-started.md Enable markdown links and remove `...` delimiters --- symja_android_library/doc/01-getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/symja_android_library/doc/01-getting-started.md b/symja_android_library/doc/01-getting-started.md index e06ade4d58..e5768f6635 100644 --- a/symja_android_library/doc/01-getting-started.md +++ b/symja_android_library/doc/01-getting-started.md @@ -83,7 +83,7 @@ If you type `SIN(x)` or `sin(x)`, Symja assumes you always mean the same built-i Symja provides many common mathematical functions and constants. -For example `[Log](functions/Log.md)` calculates the natural logarithm for base `[E](functions/E.md)`. `[Log2](functions/Log2.md)` and `[Log10](functions/Log10.md)` are variants for logarithm to the bases `2` and `10`. +For example [Log](functions/Log.md) calculates the natural logarithm for base [E](functions/E.md). [Log2](functions/Log2.md) and [Log10](functions/Log10.md) are variants for logarithm to the bases `2` and `10`. ``` >> Log(E) @@ -104,7 +104,7 @@ Of course, Symja has complex numbers and uses the equation: $$\sqrt{-1}=I$$ -In Symja the imaginary unit is represented by the uppercase letter `[I](functions/I.md)`: +In Symja the imaginary unit is represented by the uppercase letter [I](functions/I.md): ``` >> Sqrt(-4) @@ -123,7 +123,7 @@ In Symja the imaginary unit is represented by the uppercase letter `[I](function 0.195577+I*0.842966 ``` -`[Abs](functions/Abs.md)` calculates absolute values for complex numbers: +[Abs](functions/Abs.md) calculates absolute values for complex numbers: ``` >> Abs(-3)