本文簡要介紹 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。