Laplacian in 1D, 2D, or 3D

Sparse (1-3)D Laplacian on a rectangular grid with exact analytic eigenpairs.

https://github.com/lobpcg/blopex/blob/master/blopex_tools/matlab/laplacian/laplacian.m

Al momento, stai seguendo questo contributo

Sure! Here’s your technical description restructured into a clean and informative README.md format—perfect for a GitHub repository:
Laplacian Eigenpair Computation
This MATLAB/Octave-compatible code computes analytically exact eigenpairs of the negative Laplacian operator in 1D, 2D, or 3D on a rectangular finite-difference grid. It supports a wide range of boundary condition combinations: Dirichlet (D), Neumann (N), and Periodic (P).
The first mandatory output is the sparse Laplacian matrix itself via Kronecker sums of 1D discrete Laplacians. The actual numerical entries of the matrix fit int8 format, but only double data class is yet supported for sparse matrices in MATLAB.
References
Examples
Compute both matrix and eigenpairs for a 3D Laplacian with mixed boundary conditions:
[A, lambda, V] = laplacian([100, 45, 55], {'DD', 'NN', 'P'}, 20);
Compute only the matrix:
A = laplacian([100, 45, 55], {'DD', 'NN', 'P'});
Features
  • Supports Dirichlet, Neumann, and Periodic BCs (including mixed combinations)
  • Computes eigenvalues and eigenvectors analytically using Kronecker structure
  • Builds the Laplacian matrix directly
  • Compatible with GNU Octave
Related Projects. This code is a part of the BLOPEX eigensolver package:
Notes
The Python multidimensional code in SciPy:
supports arbitrary dimensions, but it does not yet support mixed boundary conditions.
Authors
  • Bryan C. Smith
  • Andrew V. Knyazev

Cita come

Andrew Knyazev (2026). Laplacian in 1D, 2D, or 3D (https://it.mathworks.com/matlabcentral/fileexchange/27279-laplacian-in-1d-2d-or-3d), MATLAB Central File Exchange. Recuperato .

Informazioni generali

Compatibilità della release di MATLAB

  • Compatibile con qualsiasi release

Compatibilità della piattaforma

  • Windows
  • macOS
  • Linux
Versione Pubblicato Note della release Action
1.3

Corrected version number.
Cosmetic changes in the code.
Updated the description to reflect the change of the order of the output made in the previous revision and other updates.

1.2

Revision 1.1 changes: rearranged the output variables, always compute the eigenvalues, compute eigenvectors and/or the matrix on demand only.
added a conversion to a toolbox

1.1.0.0

updated description

1.0.0.0