35[[nodiscard]] Matrix
poisson2d_fd(
const Matrix& f,
int N);
47[[nodiscard]] Matrix
poisson2d(
const Matrix& f,
int N);
Matrix poisson2d(const Matrix &f, int N)
Solve -Delta u = f on (0,1)^2 (Dirichlet) via DST with exact eigenvalues.
Matrix poisson2d_fd(const Matrix &f, int N)
Solve -Delta u = f on (0,1)^2 (Dirichlet) via DST with FD eigenvalues.