块三对角矩阵,如何编程这种矩阵?

时间:2017-12-11 20:43:50

标签: python numpy math matrix

我们考虑h=1/(n+1)n>=1。我们考虑矩阵K,例如:

enter image description here

和矩阵L = 1/h² Id,其中Id是单位矩阵。

我们想编制矩阵A

enter image description here

我可以编制KL,但如何编制A? A是由矩阵组成的矩阵。如何在Python中实现它?

2 个答案:

答案 0 :(得分:2)

如果您对numpy / scipy(推荐)持开放态度:

使用scipy.linalg.toeplitz创建带状矩阵,使用numpy.kron创建重复块的模式:

import numpy as np
import scipy.linalg

h = 10
K = np.zeros((4,))
K[:2] = (4 / h**2, -1 / h**2)

K = scipy.linalg.toeplitz(K)

L = np.identity(4) / h**2

KK = np.identity(3)

LL = scipy.linalg.toeplitz((0, -1, 0))

A = np.kron(LL, L) + np.kron(KK, K)

# array([[ 0.04, -0.01,  0.  ,  0.  , -0.01, -0.  ,  0.  ,  0.  ,  0.  ,  0.  ,  0.  ,  0.  ],
#        [-0.01,  0.04, -0.01,  0.  , -0.  , -0.01, -0.  ,  0.  ,  0.  ,  0.  ,  0.  ,  0.  ],
#        [ 0.  , -0.01,  0.04, -0.01,  0.  , -0.  , -0.01, -0.  ,  0.  ,  0.  ,  0.  ,  0.  ],
#        [ 0.  ,  0.  , -0.01,  0.04,  0.  ,  0.  , -0.  , -0.01,  0.  ,  0.  ,  0.  ,  0.  ],
#        [-0.01, -0.  ,  0.  ,  0.  ,  0.04, -0.01,  0.  ,  0.  , -0.01, -0.  ,  0.  ,  0.  ],
#        [-0.  , -0.01, -0.  ,  0.  , -0.01,  0.04, -0.01,  0.  , -0.  , -0.01, -0.  ,  0.  ],
#        [ 0.  , -0.  , -0.01, -0.  ,  0.  , -0.01,  0.04, -0.01,  0.  , -0.  , -0.01, -0.  ],
#        [ 0.  ,  0.  , -0.  , -0.01,  0.  ,  0.  , -0.01,  0.04,  0.  ,  0.  , -0.  , -0.01],
#        [ 0.  ,  0.  ,  0.  ,  0.  , -0.01, -0.  ,  0.  ,  0.  ,  0.04, -0.01,  0.  ,  0.  ],
#        [ 0.  ,  0.  ,  0.  ,  0.  , -0.  , -0.01, -0.  ,  0.  , -0.01,  0.04, -0.01,  0.  ],
#        [ 0.  ,  0.  ,  0.  ,  0.  ,  0.  , -0.  , -0.01, -0.  ,  0.  , -0.01,  0.04, -0.01],
#        [ 0.  ,  0.  ,  0.  ,  0.  ,  0.  ,  0.  , -0.  , -0.01,  0.  ,  0.  , -0.01,  0.04]])

如果必须是纯Python:

制作矩阵矩阵并使用zip来转换中间维度和平面列表理解以制作2D。

K = [[0.04 if i==j else -0.01 if i-j in {-1, 1} else 0.0 for j in range(4)] for i in range(4)]

L = [[-0.01 if i==j else 0.0 for j in range(4)] for i in range(4)]

Z = [[0.0 for j in range(4)] for i in range(4)]

# matrix of matrices
A = [[K if i==j else L if i-j in {-1, 1} else Z for j in range(3)] for i in range(3)]

# make 2d
A = [[a_IJij for a_IJi in a_Ii for a_IJij in a_IJi] for a_I in A for a_Ii in zip(*a_I)]

for a in A:
    print(' '.join(f'{i:5.2f}' for i in a))

#  0.04 -0.01  0.00  0.00 -0.01  0.00  0.00  0.00  0.00  0.00  0.00  0.00
# -0.01  0.04 -0.01  0.00  0.00 -0.01  0.00  0.00  0.00  0.00  0.00  0.00
#  0.00 -0.01  0.04 -0.01  0.00  0.00 -0.01  0.00  0.00  0.00  0.00  0.00
#  0.00  0.00 -0.01  0.04  0.00  0.00  0.00 -0.01  0.00  0.00  0.00  0.00
# -0.01  0.00  0.00  0.00  0.04 -0.01  0.00  0.00 -0.01  0.00  0.00  0.00
#  0.00 -0.01  0.00  0.00 -0.01  0.04 -0.01  0.00  0.00 -0.01  0.00  0.00
#  0.00  0.00 -0.01  0.00  0.00 -0.01  0.04 -0.01  0.00  0.00 -0.01  0.00
#  0.00  0.00  0.00 -0.01  0.00  0.00 -0.01  0.04  0.00  0.00  0.00 -0.01
#  0.00  0.00  0.00  0.00 -0.01  0.00  0.00  0.00  0.04 -0.01  0.00  0.00
#  0.00  0.00  0.00  0.00  0.00 -0.01  0.00  0.00 -0.01  0.04 -0.01  0.00
#  0.00  0.00  0.00  0.00  0.00  0.00 -0.01  0.00  0.00 -0.01  0.04 -0.01
#  0.00  0.00  0.00  0.00  0.00  0.00  0.00 -0.01  0.00  0.00 -0.01  0.04

答案 1 :(得分:1)

使用numpy.eye函数获取对角线上的标识矩阵,并在其他地方使用零。您可以使用可选参数k=x指定对角线的偏移量。如果您将这些标识矩阵乘以标量,您将能够引入LK。将矩阵添加到一起以获得您正在寻找的三对角矩阵。

import numpy as np

m, n = 4, 4
L = 1
K = 4
A = np.eye(m, n, k=-1) * (-L) + np.eye(m, n) * K + np.eye(m, n, k=1) * (-L)