Maths clarification (to do with complex numbers)

Soldato
Joined
18 Oct 2002
Posts
8,444
Location
Leamington Spa
I'm following a tutorial about beat detection for music and I was slightly confused about this sentence:

"From the FFT we obtain 1024 complex numbers. We compute the square of their module and store it into a new 1024 buffer."

What does it mean by the square of their module? Is the module just the absolute value of the complex number, ie. sqrt( Re(z)^2 + Im(z)^2 ) ?

I can follow the rest of it, it's just I'm not quite sure of the terminology here.
 
Psyk said:
I'm following a tutorial about beat detection for music and I was slightly confused about this sentence:

"From the FFT we obtain 1024 complex numbers. We compute the square of their module and store it into a new 1024 buffer."

What does it mean by the square of their module? Is the module just the absolute value of the complex number, ie. sqrt( Re(z)^2 + Im(z)^2 ) ?

I can follow the rest of it, it's just I'm not quite sure of the terminology here.

Yup. Thats exactly what they mean. mod(x + iy) = sqrt (x^2 + y^2)
 
Psyk said:
I'm following a tutorial about beat detection for music and I was slightly confused about this sentence:

"From the FFT we obtain 1024 complex numbers. We compute the square of their module and store it into a new 1024 buffer."

What does it mean by the square of their module? Is the module just the absolute value of the complex number, ie. sqrt( Re(z)^2 + Im(z)^2 ) ?

I can follow the rest of it, it's just I'm not quite sure of the terminology here.

Must admit not familiar with that here!

Can only think of modulus here?
 
Ah I see. Is module the plural of modulus? That would make sense.

Thanks for the help everyone.
 
I assume that the point is to calculated the average energy of a sample; in that case after you've done the FFT the next step is to take the squares of the moduli of the output. They must mean moduli instead of module; it doesn't make any sense otherwise.
 
Back
Top Bottom