本文簡要介紹 python 語言中 numpy.cumprod
的用法。
用法:
numpy.cumprod(a, axis=None, dtype=None, out=None)
返回沿給定軸的元素的累積乘積。
- a: array_like
輸入數組。
- axis: 整數,可選
計算累積乘積的軸。默認情況下,輸入是展平的。
- dtype: dtype,可選
返回數組的類型,以及元素相乘的累加器的類型。如果未指定 dtype,則默認為 a 的 dtype,除非 a 具有精度小於默認平台整數的整數 dtype。在這種情況下,將使用默認平台整數。
- out: ndarray,可選
用於放置結果的替代輸出數組。它必須具有與預期輸出相同的形狀和緩衝區長度,但如果需要,將轉換結果值的類型。
- cumprod: ndarray
除非指定了 out,否則將返回一個保存結果的新數組,在這種情況下,將返回對 out 的引用。
參數:
返回:
注意:
使用整數類型時算術是模塊化的,溢出時不會引發錯誤。
例子:
>>> a = np.array([1,2,3]) >>> np.cumprod(a) # intermediate results 1, 1*2 ... # total product 1*2*3 = 6 array([1, 2, 6]) >>> a = np.array([[1, 2, 3], [4, 5, 6]]) >>> np.cumprod(a, dtype=float) # specify type of output array([ 1., 2., 6., 24., 120., 720.])
a 的每一列(即行上)的累積乘積:
>>> np.cumprod(a, axis=0) array([[ 1, 2, 3], [ 4, 10, 18]])
a 的每一行(即列上)的累積乘積:
>>> np.cumprod(a,axis=1) array([[ 1, 2, 6], [ 4, 20, 120]])
相關用法
- Python numpy cumsum用法及代碼示例
- Python numpy chararray.ndim用法及代碼示例
- Python numpy chebyshev.chebsub用法及代碼示例
- Python numpy chararray.nbytes用法及代碼示例
- Python numpy chebyshev.chebdiv用法及代碼示例
- Python numpy copy用法及代碼示例
- Python numpy chararray.setflags用法及代碼示例
- Python numpy chararray.flat用法及代碼示例
- Python numpy can_cast用法及代碼示例
- Python numpy chararray.strides用法及代碼示例
- Python numpy chebyshev.cheb2poly用法及代碼示例
- Python numpy chararray.view用法及代碼示例
- Python numpy chebyshev.chebx用法及代碼示例
- Python numpy chebyshev.chebmul用法及代碼示例
- Python numpy char.strip用法及代碼示例
- Python numpy c_用法及代碼示例
- Python numpy cross用法及代碼示例
- Python numpy chebyshev.chebroots用法及代碼示例
- Python numpy copysign用法及代碼示例
- Python numpy char.upper用法及代碼示例
- Python numpy chararray.imag用法及代碼示例
- Python numpy chararray.base用法及代碼示例
- Python numpy chararray.flatten用法及代碼示例
- Python numpy chararray.copy用法及代碼示例
- Python numpy clip用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.cumprod。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。