Compare commits

...

3 Commits

Author SHA1 Message Date
9421cf9256 typos 2025-04-23 10:52:14 +02:00
23e9dea0eb scss: monofont noichmal definiert. Quarto bug? 2025-04-23 10:48:23 +02:00
56a3423c24 pcomplex: doppelte ueberschrift weg 2025-04-15 16:42:38 +02:00
8 changed files with 13 additions and 10 deletions

View File

@ -66,8 +66,7 @@ format:
dark: [superhero, css/dark.scss]
css:
- css/styles.css
- css/roboto-condensed.css
- css/roboto-condensed.css
highlight-style: github # arrow ?????
mainfont: "Roboto Condensed" # Ubuntu # "Atkinson Hyperlegible" # Verdana #Quicksand
toc: true # change for Vorlesung

View File

@ -32,7 +32,7 @@ $ julia
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.11.3 (2025-01-21)
| | |_| | | | (_| | | Version 1.11.4 (2025-03-10)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |

View File

@ -321,7 +321,7 @@ Die Darstellung mit genau einer Ziffer ungleich Null vor dem Komma ist die __No
$$
(10)_b = b> m \ge 1.
$$
- Bei Binärzahlen `1.01101`: ist diese Ziffer immer gleich Eins und man kann auf das Abspeichern dieser Ziffer verzichten. Diese tatsächlich abgespeicherte (gekürzte) Mantisse bezeichnen wir mit $M$, so dass
- Bei Binärzahlen `1.01101` ist diese Ziffer immer gleich Eins und man kann auf das Abspeichern dieser Ziffer verzichten. Diese tatsächlich abgespeicherte (gekürzte) Mantisse bezeichnen wir mit $M$, so dass
$$m = 1 + M$$
gilt.

View File

@ -17,7 +17,6 @@ Base.active_module() = myactive_module()
# https://github.com/JuliaLang/julia/blob/master/base/show.jl#L3073-L3077
```
# Ein Fallbeispiel: Der parametrisierte Datentyp PComplex
Wir wollen als neuen numerischen Typen **komplexe Zahlen in Polardarstellung $z=r e^{i\phi}=(r,ϕ)$** einführen.

View File

@ -494,7 +494,7 @@ Wenn man solche Zuweisungen mit `const` für dauerhaft erklärt, entsteht ein
```{julia}
const MyCmplxF64 = MyComplex{Float64}
z = MyComplex(1.1, 2.2)
z = MyCmplxF64(1.1, 2.2)
typeof(z)
```

View File

@ -5,6 +5,8 @@ $h3-font-size: 1.2rem !default;
$border-radius: 0;
$font-family-monospace: "JuliaMono";
/* bug in superhero theme? */
h1,h2,h3,h4,h5,h6 {color: #f0f0f0 !important;}
@ -13,6 +15,7 @@ h1,h2,h3,h4,h5,h6 {color: #f0f0f0 !important;}
.cell-output code span {color: #000;}
/*-- scss:rules --*/
div.cell-output { background-color: #dbdbdb; }

View File

@ -8,6 +8,8 @@ $border-radius: 0;
/* $code-block-bg: #f3f3f3; */
$code-block-bg: #f7f7f7;
$font-family-monospace: "JuliaMono";
/*-- scss:rules --*/
div.cell-output { background-color: #ffffff; }
code {color: #202020;}

View File

@ -37,12 +37,12 @@ f
- 2009 Beginn der Entwicklung am *Computer Science and Artificial
Intelligence Laboratory* des MIT
- 2012 erste release v0.1
- 2012 erste Release v0.1
- 2018 Version v1.0
- aktuell: v1.11.3 vom 21. Januar 2025
- aktuell: v1.11.4 vom 10. März 2025
Zum ersten release 2012 haben die Schöpfer von Julia ihre Ziele und Motivation in dem Blogbeitrag [Why we created Julia](https://julialang.org/blog/2012/02/why-we-created-julia/)
interessant zusammengefasst.
Zum ersten Release 2012 haben die Schöpfer von Julia ihre Ziele und Motivation in dem Blogbeitrag [Why we created Julia](https://julialang.org/blog/2012/02/why-we-created-julia/)
interessant zusammengefasst.
Für ein Bild von *Stefan Karpinski, Viral Shah, Jeff
Bezanson* und *Alan Edelman* bitte hier klicken: <https://news.mit.edu/2018/julia-language-co-creators-win-james-wilkinson-prize-numerical-software-1226>.