mirror of
https://github.com/janishutz/eth-summaries.git
synced 2025-11-25 02:24:23 +00:00
[NumCS] Start on dft-chebyshev (chapter 3.6)
This commit is contained in:
@@ -118,6 +118,7 @@ Moral of the story: Use descriptive variable names and do NOT use $t$, $tt$, $tt
|
||||
\input{parts/01_interpolation/01_trigonometric/03_interpolation/00_intro.tex}
|
||||
\input{parts/01_interpolation/01_trigonometric/03_interpolation/01_zero-padding.tex}
|
||||
\input{parts/01_interpolation/01_trigonometric/04_error-estimation.tex}
|
||||
\input{parts/01_interpolation/01_trigonometric/05_dft-chebyshev.tex}
|
||||
|
||||
% ── piece-wise interpolation ────────────────────────────────────────
|
||||
\newsection
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
\subsection{DFT und Chebyshev-Interpolation}
|
||||
Mithilfe der DFT können günstig und einfach die Chebyshev-Koeffizienten berechnet werden.
|
||||
Die Idee basiert auf dem Satz 2.4.16, durch welchen schon schnell klar wird, dass es eine Verbindung zwischen den Fourier-Koeffizienten und Chebyshev-Koeffizienten gibt.
|
||||
|
||||
Die Chebyshev-Knoten sind folgendermassen definiert:
|
||||
\begin{align*}
|
||||
t_k := \cos\left( \frac{2k + 1}{2(n + 1)} \pi \right), \smallhspace k = 0, \ldots, n
|
||||
\end{align*}
|
||||
Mit den Hilfsfunktionen $g: [-1, 1] \rightarrow \C, s \mapsto f(\cos(2\pi s))$ und $q: [-1, 1] \rightarrow \C, s \mapsto p(\cos(2\pi s))$,
|
||||
können wir folgendes mit der Interpolationsbedingung $f(t_k) = p(t_k)$ tun:
|
||||
\begin{align*}
|
||||
f(t_k) = p(t_k)
|
||||
\end{align*}
|
||||
Reference in New Issue
Block a user