repo.or.cz
/
wrf-fire-matlab.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Merge branch 'fixf'
[wrf-fire-matlab.git]
/
fft
/
poisson_1d_eig.m
blob
b54334e953f6924288be45e2adb40cf8cfbede6e
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
4
5
X=4*(sin([1:n]*pi/(2*(n+1)))/h).^2;
6
7
end