矩阵块的三对角矩阵

时间:2015-03-18 19:05:51

标签: python matrix

我看了this,但我无法用(N x N) - A >矩阵 I 在对角线的下侧和上侧对角线上, T 。我试过这个

def prep_matrix(N):
    I_N = np.identity(N)
    NV = zeros(N*N - 1)
    # now I want NV[0]=NV[1]=...=NV[N-1]:=I_N

但我不知道如何用我的矩阵填充NV。我能做什么?我发现了很多关于如何使用标量创建三对角矩阵,但没有使用矩阵块。

2 个答案:

答案 0 :(得分:1)

你可以像这样初始化:

n = 3
I, T, A = np.identity(n), np.ones(n), np.zeros([n * n, n * n])
for i in range(n):
    a, b, c = i * n, (i + 1) * n, (i + 2) * n
    A[a:b, a:b] = T
    if i < n - 1: A[b:c, a:b] = A[a:b, b:c] = I

以上示例具有以下输出:

[[ 1.  1.  1.  1.  0.  0.  0.  0.  0.]
 [ 1.  1.  1.  0.  1.  0.  0.  0.  0.]
 [ 1.  1.  1.  0.  0.  1.  0.  0.  0.]
 [ 1.  0.  0.  1.  1.  1.  1.  0.  0.]
 [ 0.  1.  0.  1.  1.  1.  0.  1.  0.]
 [ 0.  0.  1.  1.  1.  1.  0.  0.  1.]
 [ 0.  0.  0.  1.  0.  0.  1.  1.  1.]
 [ 0.  0.  0.  0.  1.  0.  1.  1.  1.]
 [ 0.  0.  0.  0.  0.  1.  1.  1.  1.]] 

答案 1 :(得分:1)

为了艺术,另一种基于bmat()的方法:

Z = np.zeros((n, n))
I = np.eye(n)
T = np.ones((n, n))*2

B = np.diag([1]*n) + np.diag([2]*np.ones(n-1), 1)  + np.diag(2*np.ones(n-1), -1)
# B = array([[ 1.,  2.,  0.],
#            [ 2.,  1.,  2.],
#            [ 0.,  2.,  1.]])
# build 2d list `Bm` replacing 0->Z, 1->T, 2->I:
bdict = {0.:Z, 1.:T, 2.:I}
Bm = [[bdict[i] for i in rw] for rw in B]
# Use the power of bmat to construct matrix:
A = np.asarray(np.bmat(Bm))