Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 451 Bytes

173.md

File metadata and controls

25 lines (19 loc) · 451 Bytes
@author jackzhenguo
@desc 创建一个下对角线为1、2、3、4的对角矩阵
@tag
@version 
@date 2020/03/11
In [1]: import numpy as np

In [2]: Z = np.diag(1+np.arange(4),k=-1)
   ...: print(Z)

[[0 0 0 0 0]
 [1 0 0 0 0]
 [0 2 0 0 0]
 [0 0 3 0 0]
 [0 0 0 4 0]]

其中,k 参数:大于0,表示与主对角线上移k,小于0下移k

[上一个例子](172.md) [下一个例子](174.md)