Laplacian in 1D, 2D, or 3D

버전 1.3 (28.8 KB) 작성자: Andrew Knyazev
Sparse (1-3)D Laplacian on a rectangular grid with exact analytic eigenpairs.
다운로드 수: 5.2K
업데이트 날짜: 2025/6/24

라이선스 보기

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

인용 양식

Andrew Knyazev (2025). Laplacian in 1D, 2D, or 3D (https://kr.mathworks.com/matlabcentral/fileexchange/27279-laplacian-in-1d-2d-or-3d), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2010b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
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