what is wrong with my code(FFT)?
이전 댓글 표시
% code
clc;
clear all;
close all;
f1 = 4*1000 %f1=4kHz
t1 = linspace(-1/f1, 1/f1, 100*1000); %t1=(-1/f1,1/f1)
x_c1=sinc(2*pi*f1*t1);
FT_x_c1 = fft(x_c1);
plot(FT_x_c1)
and result is

It is obvious that FFT of sinc function in time domain is rect function in frequency domain.
But as you see, there's something wrong with the result.
What should I do to solve this situation?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 스펙트럼 측정값에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!