from lecture 10 we had, - lthwarden.eit.lth.se/files/lectures/lecture11_slides.pdf4 how can we use...

Post on 19-Jul-2018

215 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

1

2

From lecture 10 we had,

3

4

How can we use DFT and IDFT to perform the linear filtering operation for an infinite length input signal?

Answer: By using the Overlap-Add method

5

6

L=4, M=4

>> conv([1 0 1 1 1 0 1 0 0 1 0 1],[1 1 0 0])

ans = 1 1 1 2 2 1 1 1 0 1 1 1 1 0 0

7

>> ifft(fft([1 0 1 1],7).*fft([1 1 0 0],7))

ans =

1.0000 1.0000 1.0000 2.0000 1.0000 -0.0000 0.0000

8

9

10

11

12

13

14

15

16

17

An acoustic recording of the word “mama”

18

Ex: Scalogram using Wavelets (from Matlab)

top related