|
22 | 22 | \usepackage{pgfplots} |
23 | 23 | \pgfplotsset{compat=1.18} |
24 | 24 |
|
25 | | -\usepackage{../sig_sys_macros} |
| 25 | +\usepackage{../tutorial_latex_deu/sig_sys_macros} |
26 | 26 |
|
27 | 27 | \title[Discrete-Time Convolution]{Discrete-Time Convolution} |
28 | | -\author[SigSys Tutorial]{Frank Schultz} |
29 | | -\date[Summer Term 2024]{Signals and Systems Tutorial, Summer Term 2024} |
| 28 | +\author[SigSys]{Frank Schultz} |
| 29 | +\date[Summer Term 2025]{Signals and Systems, Summer Term 2025} |
30 | 30 | \institute[]{Prof. Sascha Spors, Institute of Communications Engineering\\ |
31 | 31 | Faculty of Computer Science and Electrical Engineering, University of Rostock, Germany} |
32 | 32 |
|
33 | 33 | \begin{document} |
34 | 34 | \maketitle |
35 | 35 |
|
36 | 36 | \begin{frame}{Discrete-Time Convolution / Zeitdiskrete Faltung / Faltung von Folgen} |
37 | | -Task 8.2 |
| 37 | +cf. \url{sig_sys_ex.pdf} Task 8.2 |
38 | 38 | %% Signal x[k], h[k] |
39 | 39 | \begin{center} |
40 | 40 | \begin{tikzpicture}[scale=0.5] |
|
44 | 44 | \draw[stem] plot coordinates{(0,0) (1,1) (2,1) (3,2) (4,-1) (5,0) }; |
45 | 45 | \foreach \y in {-1, 1, 2}{\draw (\tic,\y) -- (-\tic,\y) node[left]{$\y$};}; |
46 | 46 | \draw (1,\tic) -- (1,-\tic) node[below]{$1$}; |
| 47 | +\draw (2,\tic) -- (2,-\tic) node[below]{$2$}; |
47 | 48 | \begin{scope}[xshift=11cm] |
48 | 49 | \draw[->] (-1.5,0) -- (4,0) node[right]{$k$}; |
49 | 50 | \draw[->] (0,-1.5) -- (0,3) node[above]{$h[k]$}; |
50 | 51 | \foreach \y in {-1,1,2}{\draw (\tic,\y) -- (-\tic,\y) node[left]{$\y$};}; |
51 | 52 | \draw[stem] plot coordinates{ (-1,0) (0,2) (1,1) (2,-1) (3,0)}; |
52 | 53 | \draw (1,\tic) -- (1,-\tic) node[below]{$1$}; |
| 54 | +\draw (2,\tic) -- (2,-\tic) node[above]{$2$}; |
53 | 55 | \end{scope} |
54 | 56 | \end{tikzpicture} |
55 | 57 | \end{center} |
56 | 58 |
|
57 | | -Calculate the convolution of two finite-length signals / two sequences $x[k]$ and $h[k]$ as |
| 59 | +Calculate the linear convolution of the two finite-length sequences $x[k]$ and $h[k]$ as |
58 | 60 | $$y[k] = x[k] \ast h[k]$$ |
59 | | -$$y[k] = \sum_{\kappa = -\infty}^{+\infty} x[\kappa] \ast h[-\kappa + k] = |
60 | | -\sum_{\kappa = -\infty}^{+\infty} x[-\kappa+k] \ast h[\kappa] |
| 61 | +$$y[k] = \sum_{\textcolor{C1}{\kappa} = -\infty}^{+\infty} x[\textcolor{C1}{\kappa}] \ast h[\textcolor{C1}{-\kappa} + k] = |
| 62 | +\sum_{\textcolor{C1}{\kappa} = -\infty}^{+\infty} x[\textcolor{C1}{-\kappa}+k] \ast h[\textcolor{C1}{\kappa}] |
61 | 63 | $$ |
62 | 64 |
|
63 | 65 | \end{frame} |
64 | 66 |
|
65 | 67 |
|
66 | | -\begin{frame}{L\"osungsweg I, k=0} |
| 68 | +\begin{frame}{L\"osungsweg I, k=0 (keine \"Uberlappung)} |
67 | 69 | %% k = 0 |
68 | 70 | \begin{center} |
69 | 71 | \begin{tikzpicture}[scale=0.4] |
|
82 | 84 | \draw[->] (0,-2.5) -- (0,4) node[above]{$x[\kappa]\cdot h[-\kappa+\k]$}; |
83 | 85 | \foreach \y in {-2,...,3}{\draw (\tic,\y) -- (-\tic,\y);}; |
84 | 86 | \draw[stem, C3] plot coordinates{(0,0) (1,0) (2,0) (3,0) (4,0) (5,0) }; |
85 | | -\node at (13,4.5){$y[\k] = \sum_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = +0$}; |
| 87 | +\node at (13,-4.5){$y[\k] = \sum\limits_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = +0$}; |
86 | 88 | \end{scope} |
87 | 89 | \begin{scope}[yshift=-7cm, xshift=10cm] |
88 | 90 | \draw[->] (-0.5,0) -- (8,0) node[right]{$k$}; |
89 | 91 | \draw[->] (0,-3.2) -- (0,5) node[above]{$y[k]$}; |
90 | 92 | \foreach \y in {-3,...,4}{\draw (\tic,\y) -- (-\tic,\y);}; |
91 | 93 | \draw[stem, C2!10] plot coordinates{(0,0) (1,2) (2,3) (3,4) (4,-1) (5,-3) (6,1) (7,0)}; |
92 | | -\draw[stem, C2, dashed] plot coordinates{(0,0)}; |
| 94 | +\draw[stem, C5, dashed] plot coordinates{(0,0)}; |
93 | 95 | \end{scope} |
94 | 96 | \end{tikzpicture} |
95 | 97 | \end{center} |
96 | 98 | \end{frame} |
97 | 99 |
|
98 | 100 |
|
99 | 101 |
|
100 | | -\begin{frame}{L\"osungsweg I, k=1} |
| 102 | +\begin{frame}{L\"osungsweg I, k=1 (teilweise \"Uberlappung)} |
101 | 103 | %% k = 1 |
102 | 104 | \begin{center} |
103 | 105 | \begin{tikzpicture}[scale=0.4] |
|
116 | 118 | \draw[->] (0,-2.5) -- (0,4) node[above]{$x[\kappa]\cdot h[-\kappa+\k]$}; |
117 | 119 | \foreach \y in {-2,...,3}{\draw (\tic,\y) -- (-\tic,\y);}; |
118 | 120 | \draw[stem, C3] plot coordinates{(0,0) (1,2) (2,0) (3,0) (4,0) (5,0) }; |
119 | | -\node at (13,4.5){$y[\k] = \sum_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = +2$}; |
| 121 | +\node at (13,-4.5){$y[\k] = \sum\limits_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = +2$}; |
120 | 122 | \end{scope} |
121 | 123 | \begin{scope}[yshift=-7cm, xshift=10cm] |
122 | 124 | \draw[->] (-0.5,0) -- (8,0) node[right]{$k$}; |
123 | 125 | \draw[->] (0,-3.2) -- (0,5) node[above]{$y[k]$}; |
124 | 126 | \foreach \y in {-3,...,4}{\draw (\tic,\y) -- (-\tic,\y);}; |
125 | 127 | \draw[stem, C2!10] plot coordinates{(0,0) (1,2) (2,3) (3,4) (4,-1) (5,-3) (6,1) (7,0)}; |
126 | 128 | \draw[stem, C2!75] plot coordinates{(0,0) (1,2)}; |
127 | | -\draw[stem, C2, dashed] plot coordinates{(1,2)}; |
| 129 | +\draw[stem, C5, dashed] plot coordinates{(1,2)}; |
128 | 130 | \end{scope} |
129 | 131 | \end{tikzpicture} |
130 | 132 | \end{center} |
131 | 133 | \end{frame} |
132 | 134 |
|
133 | 135 |
|
134 | 136 |
|
135 | | -\begin{frame}{L\"osungsweg I, k=2} |
| 137 | +\begin{frame}{L\"osungsweg I, k=2 (teilweise \"Uberlappung)} |
136 | 138 | %% k=2 |
137 | 139 | \begin{center} |
138 | 140 | \begin{tikzpicture}[scale=0.4] |
|
151 | 153 | \draw[->] (0,-2.5) -- (0,4) node[above]{$x[\kappa]\cdot h[-\kappa+\k]$}; |
152 | 154 | \foreach \y in {-2,...,3}{\draw (\tic,\y) -- (-\tic,\y);}; |
153 | 155 | \draw[stem, C3] plot coordinates{(0,0) (1,1) (2,2) (3,0) (4,0) (5,0) }; |
154 | | -\node at (13,4.5){$y[\k] = \sum_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = +3$}; |
| 156 | +\node at (13,-4.5){$y[\k] = \sum\limits_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = +3$}; |
155 | 157 | \end{scope} |
156 | 158 | \begin{scope}[yshift=-7cm, xshift=10cm] |
157 | 159 | \draw[->] (-0.5,0) -- (8,0) node[right]{$k$}; |
158 | 160 | \draw[->] (0,-3.2) -- (0,5) node[above]{$y[k]$}; |
159 | 161 | \foreach \y in {-3,...,4}{\draw (\tic,\y) -- (-\tic,\y);}; |
160 | 162 | \draw[stem, C2!10] plot coordinates{(0,0) (1,2) (2,3) (3,4) (4,-1) (5,-3) (6,1) (7,0)}; |
161 | 163 | \draw[stem, C2!75] plot coordinates{(0,0) (1,2) (2,3) }; |
162 | | -\draw[stem, C2, dashed] plot coordinates{(2,3)}; |
| 164 | +\draw[stem, C5, dashed] plot coordinates{(2,3)}; |
163 | 165 | \end{scope} |
164 | 166 | \end{tikzpicture} |
165 | 167 | \end{center} |
166 | 168 | \end{frame} |
167 | 169 |
|
168 | 170 |
|
169 | 171 |
|
170 | | -\begin{frame}{L\"osungsweg I, k=3} |
| 172 | +\begin{frame}{L\"osungsweg I, k=3 (vollst\"andige \"Uberlappung)} |
171 | 173 | %% k=3 |
172 | 174 | \begin{center} |
173 | 175 | \begin{tikzpicture}[scale=0.4] |
|
186 | 188 | \draw[->] (0,-2.5) -- (0,4) node[above]{$x[\kappa]\cdot h[-\kappa+\k]$}; |
187 | 189 | \foreach \y in {-2,...,3}{\draw (\tic,\y) -- (-\tic,\y);}; |
188 | 190 | \draw[stem, C3] plot coordinates{(0,0) (1,-1) (2,1) (3,4) (4,0) (5,0) }; |
189 | | -\node at (13,4.5){$y[\k] = \sum_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = +4$}; |
| 191 | +\node at (13,-4.5){$y[\k] = \sum\limits_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = +4$}; |
190 | 192 | \end{scope} |
191 | 193 | \begin{scope}[yshift=-7cm, xshift=10cm] |
192 | 194 | \draw[->] (-0.5,0) -- (8,0) node[right]{$k$}; |
193 | 195 | \draw[->] (0,-3.2) -- (0,5) node[above]{$y[k]$}; |
194 | 196 | \foreach \y in {-3,...,4}{\draw (\tic,\y) -- (-\tic,\y);}; |
195 | 197 | \draw[stem, C2!10] plot coordinates{(0,0) (1,2) (2,3) (3,4) (4,-1) (5,-3) (6,1) (7,0)}; |
196 | 198 | \draw[stem, C2!75] plot coordinates{(0,0) (1,2) (2,3) (3,4) }; |
197 | | -\draw[stem, C2, dashed] plot coordinates{(3,4)}; |
| 199 | +\draw[stem, C5, dashed] plot coordinates{(3,4)}; |
198 | 200 | \end{scope} |
199 | 201 | \end{tikzpicture} |
200 | 202 | \end{center} |
201 | 203 | \end{frame} |
202 | 204 |
|
203 | 205 |
|
204 | 206 |
|
205 | | -\begin{frame}{L\"osungsweg I, k=4} |
| 207 | +\begin{frame}{L\"osungsweg I, k=4 (vollst\"andige \"Uberlappung)} |
206 | 208 | %% k=4 |
207 | 209 | \begin{center} |
208 | 210 | \begin{tikzpicture}[scale=0.4] |
|
221 | 223 | \draw[->] (0,-2.5) -- (0,4) node[above]{$x[\kappa]\cdot h[-\kappa+\k]$}; |
222 | 224 | \foreach \y in {-2,...,3}{\draw (\tic,\y) -- (-\tic,\y);}; |
223 | 225 | \draw[stem, C3] plot coordinates{(0,0) (1,0) (2,-1) (3,2) (4,-2) (5,0) }; |
224 | | -\node at (13,4.5){$y[\k] = \sum_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = -1$}; |
| 226 | +\node at (13,-4.5){$y[\k] = \sum\limits_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = -1$}; |
225 | 227 | \end{scope} |
226 | 228 | \begin{scope}[yshift=-7cm, xshift=10cm] |
227 | 229 | \draw[->] (-0.5,0) -- (8,0) node[right]{$k$}; |
228 | 230 | \draw[->] (0,-3.2) -- (0,5) node[above]{$y[k]$}; |
229 | 231 | \foreach \y in {-3,...,4}{\draw (\tic,\y) -- (-\tic,\y);}; |
230 | 232 | \draw[stem, C2!10] plot coordinates{(0,0) (1,2) (2,3) (3,4) (4,-1) (5,-3) (6,1) (7,0)}; |
231 | 233 | \draw[stem, C2!75] plot coordinates{(0,0) (1,2) (2,3) (3,4) (4,-1)}; |
232 | | -\draw[stem, C2, dashed] plot coordinates{(4,-1)}; |
| 234 | +\draw[stem, C5, dashed] plot coordinates{(4,-1)}; |
233 | 235 | \end{scope} |
234 | 236 | \end{tikzpicture} |
235 | 237 | \end{center} |
236 | 238 | \end{frame} |
237 | 239 |
|
238 | 240 |
|
239 | 241 |
|
240 | | -\begin{frame}{L\"osungsweg I, k=5} |
| 242 | +\begin{frame}{L\"osungsweg I, k=5 (teilweise \"Uberlappung)} |
241 | 243 | %% k=5 |
242 | 244 | \begin{center} |
243 | 245 | \begin{tikzpicture}[scale=0.4] |
|
256 | 258 | \draw[->] (0,-2.5) -- (0,4) node[above]{$x[\kappa]\cdot h[-\kappa+\k]$}; |
257 | 259 | \foreach \y in {-2,...,3}{\draw (\tic,\y) -- (-\tic,\y);}; |
258 | 260 | \draw[stem, C3] plot coordinates{(0,0) (1,0) (2,0) (3,-2) (4,-1) (5,0) }; |
259 | | -\node at (13,4.5){$y[\k] = \sum_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = -3$}; |
| 261 | +\node at (13,-4.5){$y[\k] = \sum\limits_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = -3$}; |
260 | 262 | \end{scope} |
261 | 263 | \begin{scope}[yshift=-7cm, xshift=10cm] |
262 | 264 | \draw[->] (-0.5,0) -- (8,0) node[right]{$k$}; |
263 | 265 | \draw[->] (0,-3.2) -- (0,5) node[above]{$y[k]$}; |
264 | 266 | \foreach \y in {-3,...,4}{\draw (\tic,\y) -- (-\tic,\y);}; |
265 | 267 | \draw[stem, C2!10] plot coordinates{(0,0) (1,2) (2,3) (3,4) (4,-1) (5,-3) (6,1) (7,0)}; |
266 | 268 | \draw[stem, C2!75] plot coordinates{(0,0) (1,2) (2,3) (3,4) (4,-1) (5,-3)}; |
267 | | -\draw[stem, C2, dashed] plot coordinates{(5,-3)}; |
| 269 | +\draw[stem, C5, dashed] plot coordinates{(5,-3)}; |
268 | 270 | \end{scope} |
269 | 271 | \end{tikzpicture} |
270 | 272 | \end{center} |
271 | 273 | \end{frame} |
272 | 274 |
|
273 | 275 |
|
274 | 276 |
|
275 | | -\begin{frame}{L\"osungsweg I, k=6} |
| 277 | +\begin{frame}{L\"osungsweg I, k=6 (teilweise \"Uberlappung)} |
276 | 278 | %% k=6 |
277 | 279 | \begin{center} |
278 | 280 | \begin{tikzpicture}[scale=0.4] |
|
291 | 293 | \draw[->] (0,-2.5) -- (0,4) node[above]{$x[\kappa]\cdot h[-\kappa+\k]$}; |
292 | 294 | \foreach \y in {-2,...,3}{\draw (\tic,\y) -- (-\tic,\y);}; |
293 | 295 | \draw[stem, C3] plot coordinates{(0,0) (1,0) (2,0) (3,0) (4,1) (5,0) }; |
294 | | -\node at (13,4.5){$y[\k] = \sum_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = +1$}; |
| 296 | +\node at (13,-4.5){$y[\k] = \sum\limits_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = +1$}; |
295 | 297 | \end{scope} |
296 | 298 | \begin{scope}[yshift=-7cm, xshift=10cm] |
297 | 299 | \draw[->] (-0.5,0) -- (8,0) node[right]{$k$}; |
298 | 300 | \draw[->] (0,-3.2) -- (0,5) node[above]{$y[k]$}; |
299 | 301 | \foreach \y in {-3,...,4}{\draw (\tic,\y) -- (-\tic,\y);}; |
300 | 302 | \draw[stem, C2!10] plot coordinates{(0,0) (1,2) (2,3) (3,4) (4,-1) (5,-3) (6,1) (7,0)}; |
301 | 303 | \draw[stem, C2!75] plot coordinates{(0,0) (1,2) (2,3) (3,4) (4,-1) (5,-3) (6,1)}; |
302 | | -\draw[stem, C2, dashed] plot coordinates{(6,1)}; |
| 304 | +\draw[stem, C5, dashed] plot coordinates{(6,1)}; |
303 | 305 | \end{scope} |
304 | 306 | \end{tikzpicture} |
305 | 307 | \end{center} |
306 | 308 | \end{frame} |
307 | 309 |
|
308 | 310 |
|
309 | 311 |
|
310 | | -\begin{frame}{L\"osungsweg I, k=7} |
| 312 | +\begin{frame}{L\"osungsweg I, k=7 (keine \"Uberlappung)} |
311 | 313 | %% k=7 |
312 | 314 | \begin{center} |
313 | 315 | \begin{tikzpicture}[scale=0.4] |
|
326 | 328 | \draw[->] (0,-2.5) -- (0,4) node[above]{$x[\kappa]\cdot h[-\kappa+\k]$}; |
327 | 329 | \foreach \y in {-2,...,3}{\draw (\tic,\y) -- (-\tic,\y);}; |
328 | 330 | \draw[stem, C3] plot coordinates{(0,0) (1,0) (2,0) (3,0) (4,0) (5,0) }; |
329 | | -\node at (13,4.5){$y[\k] = \sum_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = +0$}; |
| 331 | +\node at (13,-4.5){$y[\k] = \sum\limits_{\kappa} x[\kappa]\cdot h[-\kappa+\k] = +0$}; |
330 | 332 | \end{scope} |
331 | 333 | \begin{scope}[yshift=-7cm, xshift=10cm] |
332 | 334 | \draw[->] (-0.5,0) -- (8,0) node[right]{$k$}; |
333 | 335 | \draw[->] (0,-3.2) -- (0,5) node[above]{$y[k]$}; |
334 | 336 | \foreach \y in {-3,...,4}{\draw (\tic,\y) -- (-\tic,\y);}; |
335 | 337 | \draw[stem, C2!10] plot coordinates{(0,0) (1,2) (2,3) (3,4) (4,-1) (5,-3) (6,1) (7,0)}; |
336 | 338 | \draw[stem, C2!75] plot coordinates{(0,0) (1,2) (2,3) (3,4) (4,-1) (5,-3) (6,1) (7,0)}; |
337 | | -\draw[stem, C2, dashed] plot coordinates{(7,0)}; |
| 339 | +\draw[stem, C5, dashed] plot coordinates{(7,0)}; |
338 | 340 | \end{scope} |
339 | 341 | \end{tikzpicture} |
340 | 342 | \end{center} |
341 | 343 | \end{frame} |
342 | 344 |
|
| 345 | +\begin{frame}{} |
| 346 | +Beginn der Signale |
| 347 | +$$k_{x,\text{Start}}=1, \quad k_{h,\text{Start}}=0 \rightarrow k_{y,\text{Start}} = k_{x,\text{Start}} + k_{h,\text{Start}} = 1$$ |
| 348 | +Länge der Signale |
| 349 | +$$N_{x} = 4, \quad N_{h} = 3 \rightarrow N_{y} = N_{x} + N_{h} -1 = 6$$ |
| 350 | +bedeutet für $y[k]$ |
| 351 | +$$y[k_{y,\text{Start}} \leq k \leq k_{y,\text{Start}} + N_y - 1] = ...$$ |
| 352 | +$$y[k<k_{y,\text{Start}}=1]=0,\quad y[k>k_{y,\text{Start}}+N_y-1=6] = 0$$ |
| 353 | +\begin{center} |
| 354 | +\begin{tikzpicture}[scale=0.4] |
| 355 | +\def\tic{0.1}; |
| 356 | +\draw[->] (-0.5,0) -- (6.5,0) node[right]{$k$}; |
| 357 | +\draw[->] (0,-1.5) -- (0,3) node[above]{$x[k]$}; |
| 358 | +\draw[stem] plot coordinates{(0,0) (1,1) (2,1) (3,2) (4,-1) (5,0) }; |
| 359 | +\foreach \y in {-1, 1, 2}{\draw (\tic,\y) -- (-\tic,\y) node[left]{$\y$};}; |
| 360 | +\draw (1,\tic) -- (1,-\tic) node[below]{$1$}; |
| 361 | +\draw (2,\tic) -- (2,-\tic) node[below]{$2$}; |
| 362 | +\draw (3,\tic) -- (3,-\tic) node[below]{$3$}; |
| 363 | +\draw (4,\tic) -- (4,-\tic) node[above]{$4$}; |
| 364 | +\begin{scope}[xshift=9.75cm] |
| 365 | +\draw[->] (-1.5,0) -- (4,0) node[right]{$k$}; |
| 366 | +\draw[->] (0,-1.5) -- (0,3) node[above]{$h[k]$}; |
| 367 | +\foreach \y in {-1,1,2}{\draw (\tic,\y) -- (-\tic,\y) node[left]{$\y$};}; |
| 368 | +\draw[stem] plot coordinates{ (-1,0) (0,2) (1,1) (2,-1) (3,0)}; |
| 369 | +\draw (1,\tic) -- (1,-\tic) node[below]{$1$}; |
| 370 | +\draw (2,\tic) -- (2,-\tic) node[above]{$2$}; |
| 371 | +\end{scope} |
| 372 | +\begin{scope}[yshift=0, xshift=16cm] |
| 373 | +\draw[->] (-0.25,0) -- (8,0) node[right]{$k$}; |
| 374 | +\draw[->] (0,-3.2) -- (0,5) node[right]{$y[k]=x[k] \ast h[k]$}; |
| 375 | +%\foreach \y in {-3,...,4}{\draw (\tic,\y) -- (-\tic,\y);}; |
| 376 | +\foreach \y in {-3,-2,...,4}{\draw (\tic,\y) -- (-\tic,\y) node[left]{$\y$};}; |
| 377 | +\draw[stem, C2!10] plot coordinates{(0,0) (1,2) (2,3) (3,4) (4,-1) (5,-3) (6,1) (7,0)}; |
| 378 | +\draw[stem, C2!75] plot coordinates{(0,0) (1,2) (2,3) (3,4) (4,-1) (5,-3) (6,1) (7,0)}; |
| 379 | +\draw (1,\tic) -- (1,-\tic) node[below]{$1$}; |
| 380 | +\draw (2,\tic) -- (2,-\tic) node[below]{$2$}; |
| 381 | +\draw (3,\tic) -- (3,-\tic) node[below]{$3$}; |
| 382 | +\draw (4,\tic) -- (4,-\tic) node[above]{$4$}; |
| 383 | +\draw (5,\tic) -- (5,-\tic) node[above]{$5$}; |
| 384 | +\draw (6,\tic) -- (6,-\tic) node[below]{$6$}; |
| 385 | +\end{scope} |
| 386 | +\end{tikzpicture} |
| 387 | +\end{center} |
343 | 388 |
|
| 389 | +\end{frame} |
344 | 390 |
|
345 | 391 |
|
346 | 392 |
|
347 | 393 | \begin{frame}{Discrete-Time Convolution / Zeitdiskrete Faltung / Faltung von Folgen} |
348 | | -Task 8.2 |
| 394 | +cf. \url{sig_sys_ex.pdf} Task 8.2 |
349 | 395 | %% Signal x[k], h[k] |
350 | 396 | \begin{center} |
351 | 397 | \begin{tikzpicture}[scale=0.5] |
|
365 | 411 | \end{tikzpicture} |
366 | 412 | \end{center} |
367 | 413 |
|
368 | | -Calculate the convolution of two finite-length signals / two sequences $x[k]$ and $h[k]$ as |
| 414 | +Calculate the convolution of the two finite-length signals $x[k]$ and $h[k]$ as |
369 | 415 | $$y[k] = x[k] \ast h[k]$$ |
370 | 416 | $$y[k] = \sum_{\kappa = -\infty}^{+\infty} x[\kappa] \ast h[-\kappa + k] = |
371 | 417 | \sum_{\kappa = -\infty}^{+\infty} x[-\kappa+k] \ast h[\kappa] |
|
0 commit comments