Performing the transform on the below logic
이전 댓글 표시
I have the below function for which I need to perform spatial Fourier transform and plot its spatial frequency spectrum for various values of y.
How to do this using matlab?
Y1 = acos(x/2+y) + asin(g/3+x);
%g is constant
댓글 수: 1
for various values of y & x?
you can create a meshgrid of y's and x's
evaluate the function f(x,y)
then use fft2: 2-D fast Fourier transform - MATLAB fft2 (mathworks.com)
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Discrete Fourier and Cosine Transforms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
