필터 지우기
필터 지우기

Plotting a time domain Signal

조회 수: 3 (최근 30일)
Abdelrhman Abdelfatah
Abdelrhman Abdelfatah 2022년 5월 24일
답변: Chunru 2022년 5월 24일
I want to plot the continuous time domain signal for the following spectrum:
and here is what i have done so far, are there any possible improvments to this?
N=256;
xn=zeros(1,N);
for n=0:1:N-1
xn(n+1)= 2*(sign(n - -1) - sign(n - 1));
end
%Taking inverse DFT
x_i=ifft(xn);
wk = 0:1:N-1;
plot(wk,x_i);

답변 (1개)

Chunru
Chunru 2022년 5월 24일
N=256;
f=(0:N-1)/N;
xf = 2*sinc(2*f); % 2*sin(w)/w => 2*sinc(2*f)
x_i=ifft(xf);
plot(f, real(x_i), 'r', f, imag(x_i), 'b');

카테고리

Help CenterFile Exchange에서 Spectral Measurements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by