(1) I was given a signal with the following criteria:
Samples: 349 Frequency: 3490 Frequency steps: 1 Last Trace: 4007
A data of a the signal contains 349 samples and the total data collected is 4007. Sampling frequency is described as the number of samples per second as described by googling. However for this signal, is the sampling frequency equals to 3490Hz or (349x3490)Hz?
(2) I was asked to conduct a Fourier Transform on this signal to determine the noises from this signal. This is the result that I attained from the code below:
clf;
a = importdata('A-scan.txt');
A = fft(a);
Aa = abs(A);
plot(Aa);
xlabel('frequency (bins)');
ylabel('magnitude');
Below is the result of the fft on the signal:
I have watched videos on youtube that the frequency is in bins. However, I am not entirely sure what it is. How do we determine the frequency of the signal and ultimately the noise of the signal in order for me to design a filter?