Solving DFT of Cos Function Issue with MATLAB

  • Context: MATLAB 
  • Thread starter Thread starter amaresh92
  • Start date Start date
  • Tags Tags
    Cos Dft Function
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 6K views
amaresh92
Messages
163
Reaction score
0
greetings,
i have typed some code in MATLAB to find the 5 point fft of cos function of frequency 100hz but in answer i am not geting the answer at 100 hz.may i know where the things going wrong. the code is as this one

clc;
t=0:1/4:1;
x=cos(2*pi*100*t);
xm=abs(fft(x));
disp(xm)
p=0:length(xm)-1;
subplot(2,2,1);
stem(100*p,xm);



the answer is
5 0 0 0 0


thanks in advance
 
Physics news on Phys.org
uart said:
Hi amaresh92. Tell me what you know about the Nyquist sampling theorem.
dont know why it has to be true
 
Ok. The problem is that your single is at 100Hz, but you are only sampling at at 4 Hz (4 samples per second). Sampling theory says that we have to sample at at-least twice the highest frequency component of the signal, so greater than 200 Hz in this case. What this means is that your "t" spacing must be less than 0.005.
 
Last edited:
Hi amaresh92, if you want a simple 5 point example then try this code and see if the results make more sense. :smile:

Code:
n = 5                    # Specify the number of points to sample.
fs = 500                 # Specify the sample frequency.
dt=1/fs                  # Calculate the inter-sample interval.

t = [0:n-1]*dt           # Create the sample vector.
x = cos(2*pi*100*t)      # Create the signal vector.
xm = abs(fft(x))         # Compute the fft magnitude.

df = fs/n                # Calculate the frequency increment of the fft.
ascale = n/2             # Amplitude scale factor.

                         # Plot fft magnetude. Note "reflection" about fs/2.
plot([0:n-1]*df,xm/ascale,'*')
 
Last edited:
uart said:
Ok. The problem is that your single is at 100Hz, but you are only sampling at at 4 Hz (4 samples per second). Sampling theory says that we have to sample at at-least twice the highest frequency component of the signal, so greater than 200 Hz in this case. What this means is that your "t" spacing must be less than 0.005.

thanks a lot