本文簡要介紹 python 語言中 numpy.expand_dims
的用法。
用法:
numpy.expand_dims(a, axis)
展開數組的形狀。
插入一個新軸,該軸將出現在展開的數組形狀中的軸位置。
- a: array_like
輸入數組。
- axis: int 或整數元組
放置新軸(或多個軸)的擴展軸中的位置。
- result: ndarray
視圖隨著維度數量的增加而增加。
參數:
返回:
例子:
>>> x = np.array([1, 2]) >>> x.shape (2,)
以下等效於
x[np.newaxis, :]
或x[np.newaxis]
:>>> y = np.expand_dims(x, axis=0) >>> y array([[1, 2]]) >>> y.shape (1, 2)
以下等價於
x[:, np.newaxis]
:>>> y = np.expand_dims(x, axis=1) >>> y array([[1], [2]]) >>> y.shape (2, 1)
axis
也可能是一個元組:>>> y = np.expand_dims(x, axis=(0, 1)) >>> y array([[[1, 2]]])
>>> y = np.expand_dims(x, axis=(2, 0)) >>> y array([[[1], [2]]])
請注意,某些示例可能使用
None
而不是np.newaxis
。這些是相同的對象:>>> np.newaxis is None True
相關用法
- Python numpy exp2用法及代碼示例
- Python numpy exp用法及代碼示例
- Python numpy expm1用法及代碼示例
- Python numpy extract用法及代碼示例
- Python numpy einsum_path用法及代碼示例
- Python numpy equal用法及代碼示例
- Python numpy eye用法及代碼示例
- Python numpy errstate用法及代碼示例
- Python numpy einsum用法及代碼示例
- Python numpy ediff1d用法及代碼示例
- Python numpy empty用法及代碼示例
- Python numpy empty_like用法及代碼示例
- Python numpy RandomState.standard_exponential用法及代碼示例
- Python numpy hamming用法及代碼示例
- Python numpy legendre.legint用法及代碼示例
- Python numpy chararray.ndim用法及代碼示例
- Python numpy chebyshev.chebsub用法及代碼示例
- Python numpy chararray.nbytes用法及代碼示例
- Python numpy ma.indices用法及代碼示例
- Python numpy matrix.A1用法及代碼示例
- Python numpy MaskedArray.var用法及代碼示例
- Python numpy ma.zeros用法及代碼示例
- Python numpy broadcast用法及代碼示例
- Python numpy matrix.T用法及代碼示例
- Python numpy matrix.I用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.expand_dims。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。