After reading a no. of posts here itself i have applied an FFT algorithm on the recorded audio(.wav) file to transform it from time domain to frequency domain.
As a result i have got an array containing some values as
magnitude[i] = sqrt(re*re+im*im);
Now as the title says i have to find frequency and amplitude of the signal(complex sound i.e voice) using this magnitude array, but i have no idea of how to do further processing using this array.The size of FFT is 1024 and sample rate is 48000Hz. Please help me for further processing.