필터 지우기
필터 지우기

I'm trying to generate a code that calculates the fourier series coefficients of a period.

조회 수: 1 (최근 30일)
such as: x(tc) = {1 if 0<=tc<5 and -0.5 if 5 <=tc<10}
I am given the fundamental period as 10 seconds.
The continuous time tc can be approximated as the discrete time, td, whose sampling frequency is 1kHz.

답변 (1개)

Rick Rosson
Rick Rosson 2014년 3월 2일
편집: Rick Rosson 2014년 3월 2일
Fs = 1000;
dt = 1/Fs;
t = (0:dt:10-dt)';
N = size(t,1);
x = ones(N,1);
x(t>=5) = -0.5;
X = fftshift(fft(x))/N;
dF = Fs/N;
f = (-Fs/2:dF:Fs/2-dF)';
figure;
stem(f,abs(X));

카테고리

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