Plot discrete fourier transform of a sine wave

조회 수: 150 (최근 30일)
Cynthia Lucy
Cynthia Lucy 2021년 5월 10일
댓글: Star Strider 2021년 5월 10일
Hi, I want to plot the sampled signal in frequency domain which means I need to use the discrete fourier transform, right? But when I run the code below I only get the display of sampled signal in discrete time domain and an error saying vector lengths must match came out on the command window. What does this mean? And what should be fixed? Please help me.
%chap1-38a
f = 6000;
fs = 16000;
w = 2*pi*(f/fs);
n = 0:50;
y = sin(w.*n);
subplot(2,1,1);
stem(n,y);
f = -fs/2:fs/(N-1):fs/2;
z = fftshift(fft(x));
subplot(2,1,2);
plot(f,abs(z));
The display when I run the code.

채택된 답변

Star Strider
Star Strider 2021년 5월 10일
Try this —
f = 6000;
fs = 16000;
w = 2*pi*(f/fs);
N = 50;
n = 0:N;
y = sin(w.*n);
subplot(2,1,1);
stem(n,y);
f = -fs/2:fs/(N):fs/2;
z = fftshift(fft(y));
subplot(2,1,2);
plot(f,abs(z));
I will let you discover the changes I made that are necessary to make it run!
  댓글 수: 2
Cynthia Lucy
Cynthia Lucy 2021년 5월 10일
Ive found the changes you made and now I understand what is wrong with my previous code! Thank you so much for your help! @Star Strider
Star Strider
Star Strider 2021년 5월 10일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Discrete Fourier and Cosine Transforms에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by