Merge branch 'fixf'
[wrf-fire-matlab.git] / fft / poisson_1d_eig.m
blobb54334e953f6924288be45e2adb40cf8cfbede6e
1 function X=poisson_1d_eig(n,h);
2 % X=poisson_1d_eig(n,h)
3 % eigenvalues of d^2/dx^2 with zero b.c. mesh 1:n stepsize h
5 X=4*(sin([1:n]*pi/(2*(n+1)))/h).^2;
7 end