first adaptions to quarto1.5, julia 1.10

This commit is contained in:
Meik Hellmund 2024-02-21 18:02:17 +01:00
parent a81fd50015
commit d8123167be
4 changed files with 14 additions and 17 deletions

View File

@ -7,7 +7,7 @@
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/*.ipynb": true,
"**/*.ipynb": false,
"**/*.md": false
},
"explorerExclude.backup": {},

View File

@ -45,15 +45,14 @@ book:
- chapters/first_contact.qmd
- chapters/Erste_Bsp.qmd
- chapters/syntax.qmd
- chapters/5_TricksHelp.qmd
- chapters/numerictypes.qmd
- chapters/Pi2.qmd
- chapters/types.qmd
- chapters/pcomplex.qmd
- chapters/9_functs.qmd
- chapters/6_ArraysEtcP1.qmd
- chapters/7_ArraysP2.qmd
- chapters/10_Strings.qmd
# - chapters/5_TricksHelp.qmd
# - chapters/numerictypes.qmd
# - chapters/Pi2.qmd
# - chapters/pcomplex.qmd
# - chapters/9_functs.qmd
# - chapters/6_ArraysEtcP1.qmd
# - chapters/7_ArraysP2.qmd
# - chapters/10_Strings.qmd
# - chapters/makie.qmd
# - chapters/ablaufsteuerung.qmd
# - chapters/example.qmd
@ -122,7 +121,7 @@ keep-ipynb: true
keep-tex: true
keep-md: true
jupyter: julia-1.8
jupyter: julia-1.10
filters:
- code-visibility

View File

@ -27,17 +27,15 @@ Wenn man Julia direkt startet, wird die [Julia-REPL](https://docs.julialang.org/
```default
$ julia
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.8.5 (2023-01-08)
| | |_| | | | (_| | | Version 1.10.1 (2024-02-13)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
julia>
```

View File

@ -11,7 +11,7 @@ a = [3, 7, 5, 3]
b = [1, 3, 7, 4]
δ = π/2
t = LinRange(-π, π, 300)
f = Figure(resolution=(800, 180))
f = Figure(size=(800, 180))
for i in 1:4
x = sin.( a[i] .* t .+ δ )
y = sin.( b[i] .* t )
@ -27,7 +27,7 @@ f
Intelligence Laboratory* des MIT
- 2012 erste release v0.1
- 2018 Version v1.0
- aktuell: v1.8.5 vom 8. Januar 2023
- aktuell: v1.10.1 vom 13. Februar 2024
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.
@ -118,5 +118,5 @@ Julia has a built-in package manager."
- [The Julia Express](http://bogumilkaminski.pl/files/julia_express.pdf) - Kurzfassung, Julia auf 16 Seiten
- [Think Julia](https://benlauwens.github.io/ThinkJulia.jl/latest/book.html) - Einführung in die Programmierung mit Julia als Sprache
- Das [Julia Forum](https://discourse.julialang.org/)
- Was fürs Auge: [Beispiele zum Julia-Grafikpaket `Makie`](https://beautiful.makie.org/dev/)
- Was fürs Auge: [Beispiele zum Julia-Grafikpaket `Makie`](https://beautiful.makie.org/)