tags:

views:

38

answers:

1

I am trying to determine the frequency of a signal given as a vector in Matlab. Any idea how to do it ?

+3  A: 

use fft() function in Matlab.

This contains both the phase and amplitude, to get the amplitude only you can use abs(fft(..))

VoodooChild
Doh, I was so close. Thanks VoodooChild!
hyperboreean

related questions