What is the Fourier Function of Matlab doing?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hidden in the Matlab basic functions I discovered
fourier(f)
existst. This seems useful I thought, because It applies the fourier-transform to the function f by calculating the complex integral.
But how can I take use of that? I thought, by doing the transform, I can simply plot it:
syms x
FT = fourier(x^2)
fplot(FT)
isn't doing much. Is there a misunderstanding at the root?
댓글 수: 0
채택된 답변
Walter Roberson
2021년 1월 15일
syms x w
FT(w) = fourier(x^2, x, w)
FT(-1), FT(0), FT(1)
fplot(FT)
The empty plot is to be expected as the value is 0 everywhere exact at w = 0 exactly, where it is -infinity .
댓글 수: 2
Walter Roberson
2021년 1월 16일
No, that is not correct. The fourier transform is an infinite integral https://en.wikipedia.org/wiki/Fourier_transform#Definition
The Fourier Transform is the infinite case of the Fourier Series https://en.wikipedia.org/wiki/Fourier_Series#Definition
With the fourier transform being an infinite integral, there are some cases where the value of the entire integral is known; this happens to be one of them.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Calculus에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!