Skip to content

Commit

Permalink
Update 01-getting-started.md
Browse files Browse the repository at this point in the history
Enable markdown links and remove `...` delimiters
  • Loading branch information
axkr authored Dec 19, 2023
1 parent aae9a19 commit df5f837
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions symja_android_library/doc/01-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit df5f837

Please sign in to comment.