fourier series - fourier transform
조회 수: 2 (최근 30일)
이전 댓글 표시
i want fourier and fourier transform of the " u " .
t = 0:0.001:0.334;
u = ones(size(t)).*(t >= 0).*(t <= 0.02)+zeros(size(t)).*(t > 0.02).*(t < 0.287)+ones(size(t)).*(t >= 0.287).*(t <= 0.307)+zeros(size(t)).*(t > 0.307).*(t <= 0.335);
댓글 수: 2
Azzi Abdelmalek
2013년 10월 25일
Fourier and Fourier transform, What is the difference between the two?
답변 (1개)
Jamie
2013년 10월 27일
편집: Jamie
2013년 10월 27일
Hey Ebi,
The choice of fourier transform or fourier series simply depends on whether the signal is periodic or aperiodic.
To obtain the transform
help fft
Cheers
댓글 수: 2
Jamie
2013년 10월 28일
편집: Jamie
2013년 10월 28일
Hey Ebi, I would be looking at the curve fitting tool (fourier series ~ periodic). From my understanding you're simply attempting to fit a curve to the signal 'u' with elements acos()+ bsin ().. etc. All you need to do is specify the number of terms and apraise the fit.
have a look at the link I pasted above.
Cheers
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!