MATLAB: How to convert fft results to frequency

fft

I have done fft(mysignal) and I need convert fft results to frequency (array with frequency). I don't know how to do this.

Best Answer

You have to create the frequency vector yourself, however that is not difficult.
See the documentation on fft (link) for details.
Related Question