Föreläsningar
| Slides | Extra material | Läsning | ||
| F1 | Introduktion, svängningar och fasvektor |
Räkneexempel med Eulers formler: Summa av två tidsförskjutna cosinus Matlab-exempel: oscillator.m |
||
| F2 | Sampling och kvantisering | pdf ppt |
Räkneexempel: Matlab-exempel: %% beräkning av RMS för kvantiseringsbrus % 1000000 slumptal mellan %-0.5 och 0.5 |
SWS: Chapter 2 - Statistics, Probability and Noise |
| F3 | Linjära system och filter | pdf ppt |
%% Moving-average-filter X = rand(30,1) |
JOS-F: The Simplest Lowpass Filter |
| F4 | Filter med återkoppling | pdf ppt |
JOS-F: Time Doman Representations |
|
| F5 | Faltning & Z-transform | pdf ppt | Faltningsdemo*: Joy of convolution |
JOS-F: Transfer Function Analysis |
| F6 | Fouriertransformer | pdf ppt |
Matlab-exempel: % plot basis vectors of the DFT |
JOS-D: Introduction to the DFT |
| F7 | Filtrering och transformer i 2D | pdf ppt |
SWS: Chapter 24 - Linear Image Processing |
|
| F8 | Kurssammanfattning | pdf ppt |
Frekvenssvar för rektangel-puls: $$X(\omega) = \frac{e^{-j\omega N}-1}{e^{-j\omega}-1}$$ N=16 w = -pi:0.01:pi; X=(exp(-j*w*N)-1)./(exp(-j*w)-1); % 2D-plot (absolutbelopp mot frekvens) subplot(2,1,1); plot(w,abs(X)) % 3D-plot (real- och imaginärdel mot frekvens) subplot(2,1,2); plot3(w,real(X),imag(X))
|
*) Kräver JAVA-plugin i webbläsaren
SWS = Sthephen W Smith: The Scientist and Engineer's Guide to Digital Signal Processing
JOS-D = Julius O. Smith III: Mathematics of the Discrete Fourier Transform
JOS-F = Julius O. Smith III: Introduction to Digital Filters