LaplacianNd#
- class scipy.sparse.linalg.LaplacianNd(*args, **kwargs)[源代码]#
N
维网格拉普拉斯算子及其特征值/特征向量。在 N 维均匀矩形网格上构造拉普拉斯算子,并输出其特征值和特征向量。拉普拉斯算子
L
是方阵,负定,实对称数组,具有带符号的整数项,否则为零。- 参数:
- grid_shapetuple
一个长度为
N
的整数元组(对应于拉普拉斯算子的维度),其中每个条目给出该维度的大小。拉普拉斯矩阵是大小为np.prod(grid_shape)
的方阵。- boundary_conditions{‘neumann’, ‘dirichlet’, ‘periodic’}, 可选
网格边界上的边界条件类型。有效值是
'dirichlet'
或'neumann'
(默认)或'periodic'
。- dtypedtype
数组的数值类型。默认值为
np.int8
。
说明
与 MATLAB/Octave 中 [1] 的一维、二维和三维拉普拉斯算子的实现相比,此代码允许任意 N 维情况和无矩阵可调用选项,但目前仅限于纯狄利克雷、诺伊曼或周期性边界条件。
矩形网格的图 (
scipy.sparse.csgraph.laplacian
) 的拉普拉斯矩阵对应于具有诺伊曼条件的负拉普拉斯算子,即boundary_conditions = 'neumann'
。对于具有网格步长
h=1
的形状为 grid_shape 的N
维规则网格,离散拉普拉斯算子的所有特征值和特征向量都是解析已知的 [2]。参考文献
[1][2]“二阶导数的特征值和特征向量”,维基百科 https://en.wikipedia.org/wiki/Eigenvalues_and_eigenvectors_of_the_second_derivative
示例
>>> import numpy as np >>> from scipy.sparse.linalg import LaplacianNd >>> from scipy.sparse import diags, csgraph >>> from scipy.linalg import eigvalsh
下面演示的一维拉普拉斯算子,用于在具有
n=6
个网格点的规则网格上的纯诺伊曼边界条件,它正好是具有n
个顶点的无向线性图的负图拉普拉斯算子,使用由著名的三对角矩阵表示的稀疏邻接矩阵G
。>>> n = 6 >>> G = diags(np.ones(n - 1), 1, format='csr') >>> Lf = csgraph.laplacian(G, symmetrized=True, form='function') >>> grid_shape = (n, ) >>> lap = LaplacianNd(grid_shape, boundary_conditions='neumann') >>> np.array_equal(lap.matmat(np.eye(n)), -Lf(np.eye(n))) True
由于拉普拉斯算子的所有矩阵条目都是整数,因此
'int8'
是用于存储矩阵表示的默认 dtype。>>> lap.tosparse() <DIAgonal sparse array of dtype 'int8' with 16 stored elements (3 diagonals) and shape (6, 6)> >>> lap.toarray() array([[-1, 1, 0, 0, 0, 0], [ 1, -2, 1, 0, 0, 0], [ 0, 1, -2, 1, 0, 0], [ 0, 0, 1, -2, 1, 0], [ 0, 0, 0, 1, -2, 1], [ 0, 0, 0, 0, 1, -1]], dtype=int8) >>> np.array_equal(lap.matmat(np.eye(n)), lap.toarray()) True >>> np.array_equal(lap.tosparse().toarray(), lap.toarray()) True
可以计算任意数量的极端特征值和/或特征向量。
>>> lap = LaplacianNd(grid_shape, boundary_conditions='periodic') >>> lap.eigenvalues() array([-4., -3., -3., -1., -1., 0.]) >>> lap.eigenvalues()[-2:] array([-1., 0.]) >>> lap.eigenvalues(2) array([-1., 0.]) >>> lap.eigenvectors(1) array([[0.40824829], [0.40824829], [0.40824829], [0.40824829], [0.40824829], [0.40824829]]) >>> lap.eigenvectors(2) array([[ 0.5 , 0.40824829], [ 0. , 0.40824829], [-0.5 , 0.40824829], [-0.5 , 0.40824829], [ 0. , 0.40824829], [ 0.5 , 0.40824829]]) >>> lap.eigenvectors() array([[ 0.40824829, 0.28867513, 0.28867513, 0.5 , 0.5 , 0.40824829], [-0.40824829, -0.57735027, -0.57735027, 0. , 0. , 0.40824829], [ 0.40824829, 0.28867513, 0.28867513, -0.5 , -0.5 , 0.40824829], [-0.40824829, 0.28867513, 0.28867513, -0.5 , -0.5 , 0.40824829], [ 0.40824829, -0.57735027, -0.57735027, 0. , 0. , 0.40824829], [-0.40824829, 0.28867513, 0.28867513, 0.5 , 0.5 , 0.40824829]])
二维拉普拉斯算子在每个维度有
grid_shape = (2, 3)
个点的规则网格上进行说明。>>> grid_shape = (2, 3) >>> n = np.prod(grid_shape)
网格点的编号如下
>>> np.arange(n).reshape(grid_shape + (-1,)) array([[[0], [1], [2]], [[3], [4], [5]]])
每个边界条件
'dirichlet'
、'periodic'
和'neumann'
分别进行说明;'dirichlet'
为:>>> lap = LaplacianNd(grid_shape, boundary_conditions='dirichlet') >>> lap.tosparse() <Compressed Sparse Row sparse array of dtype 'int8' with 20 stored elements and shape (6, 6)> >>> lap.toarray() array([[-4, 1, 0, 1, 0, 0], [ 1, -4, 1, 0, 1, 0], [ 0, 1, -4, 0, 0, 1], [ 1, 0, 0, -4, 1, 0], [ 0, 1, 0, 1, -4, 1], [ 0, 0, 1, 0, 1, -4]], dtype=int8) >>> np.array_equal(lap.matmat(np.eye(n)), lap.toarray()) True >>> np.array_equal(lap.tosparse().toarray(), lap.toarray()) True >>> lap.eigenvalues() array([-6.41421356, -5. , -4.41421356, -3.58578644, -3. , -1.58578644]) >>> eigvals = eigvalsh(lap.toarray().astype(np.float64)) >>> np.allclose(lap.eigenvalues(), eigvals) True >>> np.allclose(lap.toarray() @ lap.eigenvectors(), ... lap.eigenvectors() @ np.diag(lap.eigenvalues())) True
'periodic'
为:>>> lap = LaplacianNd(grid_shape, boundary_conditions='periodic') >>> lap.tosparse() <Compressed Sparse Row sparse array of dtype 'int8' with 24 stored elements and shape (6, 6)> >>> lap.toarray() array([[-4, 1, 1, 2, 0, 0], [ 1, -4, 1, 0, 2, 0], [ 1, 1, -4, 0, 0, 2], [ 2, 0, 0, -4, 1, 1], [ 0, 2, 0, 1, -4, 1], [ 0, 0, 2, 1, 1, -4]], dtype=int8) >>> np.array_equal(lap.matmat(np.eye(n)), lap.toarray()) True >>> np.array_equal(lap.tosparse().toarray(), lap.toarray()) True >>> lap.eigenvalues() array([-7., -7., -4., -3., -3., 0.]) >>> eigvals = eigvalsh(lap.toarray().astype(np.float64)) >>> np.allclose(lap.eigenvalues(), eigvals) True >>> np.allclose(lap.toarray() @ lap.eigenvectors(), ... lap.eigenvectors() @ np.diag(lap.eigenvalues())) True
以及
'neumann'
为:>>> lap = LaplacianNd(grid_shape, boundary_conditions='neumann') >>> lap.tosparse() <Compressed Sparse Row sparse array of dtype 'int8' with 20 stored elements and shape (6, 6)> >>> lap.toarray() array([[-2, 1, 0, 1, 0, 0], [ 1, -3, 1, 0, 1, 0], [ 0, 1, -2, 0, 0, 1], [ 1, 0, 0, -2, 1, 0], [ 0, 1, 0, 1, -3, 1], [ 0, 0, 1, 0, 1, -2]], dtype=int8) >>> np.array_equal(lap.matmat(np.eye(n)), lap.toarray()) True >>> np.array_equal(lap.tosparse().toarray(), lap.toarray()) True >>> lap.eigenvalues() array([-5., -3., -3., -2., -1., 0.]) >>> eigvals = eigvalsh(lap.toarray().astype(np.float64)) >>> np.allclose(lap.eigenvalues(), eigvals) True >>> np.allclose(lap.toarray() @ lap.eigenvectors(), ... lap.eigenvectors() @ np.diag(lap.eigenvalues())) True
方法
toarray()
从拉普拉斯数据构造密集数组
tosparse()
从拉普拉斯数据构造稀疏数组
eigenvalues(m=None)
按升序构造一个由拉普拉斯矩阵的 m 个最大(绝对值最小)特征值组成的一维数组。
eigenvectors(m=None)
构造一个数组,其列由与 m 个有序特征值相对应的
Nd
拉普拉斯算子的 m 个特征向量 (float
) 组成。.. versionadded:: 1.12.0