more chapters adapted to julia engine

This commit is contained in:
2024-05-13 00:38:46 +02:00
parent cc79833992
commit c024532262
17 changed files with 170 additions and 44 deletions

View File

@@ -1,3 +1,14 @@
---
engine: julia
---
```{julia}
#| error: false
#| echo: false
#| output: false
using InteractiveUtils
```
# Lineare Algebra in Julia
```{julia}
@@ -190,6 +201,17 @@ A = [ 0 1
```
Das folgende Bild zeigt die Wirkung von $A$ auf Einheitsvektoren. Vektoren gleicher Farbe werden aufeinander abgebildet. (Code durch anklicken sichtbar):
```{julia}
#| error: false
#| echo: false
#| output: false
using CairoMakie
CairoMakie.activate!(type = "svg")
# set_theme!(size=(1600, 360))
```
```{julia}
#| code-fold: true
#| fig-cap: "Bild der Einheitskugel unter $v \\mapsto Av$ mit $||A||\\approx 2.088$"