本文简要介绍 python 语言中 numpy.diagflat
的用法。
用法:
numpy.diagflat(v, k=0)
创建一个二维数组,将扁平化的输入作为对角线。
- v: array_like
输入数据,被展平并设置为输出的k-th 对角线。
- k: 整数,可选
对角线设置; 0,默认值,对应于 “main” 对角线,正(负)k 给出主上(下)对角线的编号。
- out: ndarray
二维输出数组。
参数:
返回:
例子:
>>> np.diagflat([[1,2], [3,4]]) array([[1, 0, 0, 0], [0, 2, 0, 0], [0, 0, 3, 0], [0, 0, 0, 4]])
>>> np.diagflat([1,2], 1) array([[0, 1, 0], [0, 0, 2], [0, 0, 0]])
相关用法
- Python numpy diagonal用法及代码示例
- Python numpy diag用法及代码示例
- Python numpy diag_indices用法及代码示例
- Python numpy divmod用法及代码示例
- Python numpy divide用法及代码示例
- Python numpy digitize用法及代码示例
- Python numpy disp用法及代码示例
- Python numpy diff用法及代码示例
- Python numpy dtype.isbuiltin用法及代码示例
- Python numpy dtype.shape用法及代码示例
- Python numpy dtype.ndim用法及代码示例
- Python numpy dtype.alignment用法及代码示例
- Python numpy dtype用法及代码示例
- Python numpy dtype.names用法及代码示例
- Python numpy dtype.__class_getitem__用法及代码示例
- Python numpy dtype.flags用法及代码示例
- Python numpy dtype.fields用法及代码示例
- Python numpy dtype.subdtype用法及代码示例
- Python numpy delete用法及代码示例
- Python numpy dtype.descr用法及代码示例
- Python numpy dec.setastest用法及代码示例
- Python numpy datetime_as_string用法及代码示例
- Python numpy dtype.kind用法及代码示例
- Python numpy dtype.metadata用法及代码示例
- Python numpy dsplit用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.diagflat。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。