mirror of
https://gitlab.gwdg.de/j.hahn02/ws-numerik.git
synced 2026-03-02 03:32:43 +01:00
34 lines
909 B
Markdown
34 lines
909 B
Markdown
# Ws Numerik
|
|
|
|
Numerikportfolio im WS 2026 bearbeitet von Jonas Hahn. Die Aufgabenstellung ist in `TASK.md`.
|
|
Wichtige code snippets in der `justfile`.
|
|
|
|
Die hier benutzte Pythonversion ist `3.13`.
|
|
|
|
## Dependencies
|
|
|
|
Installiere alles mit `just setup`.
|
|
|
|
Liste der benoetigten Packete
|
|
```bash
|
|
uv
|
|
typst
|
|
just
|
|
```
|
|
|
|
Das default target mit `just` ist ein guter Startpunkt.
|
|
[Template](https://typst.app/universe/package/ilm) fuer das Dokument mit [Iosevka](https://typeof.net/Iosevka/) als Font.
|
|
Es muss die richtige julia Version vorhanden sein. Installation mit [juliaup](https://github.com/JuliaLang/juliaup).
|
|
|
|
## Links
|
|
|
|
Generell
|
|
https://en.wikipedia.org/wiki/Householder_transformation
|
|
https://en.wikipedia.org/wiki/QR_decomposition#Using_Householder_reflections
|
|
|
|
Implementation
|
|
https://mmids-textbook.github.io/chap02_ls/04_qr/roch-mmids-ls-qr.html
|
|
|
|
More
|
|
https://www.cs.utexas.edu/~rvdg/books/HQR.pdf
|