Performing the transform on the below logic
Show older comments
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 Comment
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)
Accepted Answer
More Answers (0)
Categories
Find more on Fourier Analysis and Filtering in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!