How can I use FFT to solve this function?

1 view (last 30 days)
Yuxing Zhang
Yuxing Zhang on 25 Nov 2018
a.png
My problem is to solve the treamfunction satisfication use FFT method and I do not have ideas how to do it, can anyone help me improve my codes? Or give me some hints please?
tspan=0:0.5:4;
v=0.001;
L=20;n=64;
x2=linspace(-L/2,L/2,n+1);
x=x2(1:n);
y=x;
kx=(2*pi/L)*[0:(n/2-1) (-n/2):-1];
kx(1)=10^-6;
ky=kx;
[X,Y]=meshgrid(x,y);
[KX,KY]=meshgrid(kx,ky);

Answers (0)

Categories

Find more on Fourier Analysis and Filtering in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!