溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python中的numpy.ufunc函數(shù)怎么使用

發(fā)布時(shí)間:2023-05-06 15:03:19 來(lái)源:億速云 閱讀:216 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇“Python中的numpy.ufunc函數(shù)怎么使用”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來(lái)看看這篇“Python中的numpy.ufunc函數(shù)怎么使用”文章吧。

一、說(shuō)明

        numpy.ufunc是什么函數(shù)?答曰:就是numpy的函數(shù),因?yàn)閚umpy針對(duì)的是數(shù)組張量,因此,幾乎每一個(gè)函數(shù)都是ufunc。

二、numpy.ufunc函數(shù)概念

2.1 numpy.ufunc簡(jiǎn)介

        在整個(gè)數(shù)組上逐個(gè)元素地操作的函數(shù)。因此,ufunc是個(gè)泛指,這些函數(shù)為數(shù)眾多。

        通用函數(shù)(或簡(jiǎn)稱 ufunc)是一種以逐個(gè)元素的方式對(duì) ndarrays 進(jìn)行操作的函數(shù),支持?jǐn)?shù)組廣播、類型轉(zhuǎn)換和其他一些標(biāo)準(zhǔn)功能。也就是說(shuō),ufunc 是函數(shù)的“矢量化”包裝器,它采用固定數(shù)量的特定輸入并產(chǎn)生固定數(shù)量的特定輸出。有關(guān)通用函數(shù)的詳細(xì)信息,請(qǐng)參閱通用函數(shù) (ufunc) 基礎(chǔ)知識(shí)。

        在NumPy中,通函數(shù)是numpy.ufunc類的實(shí)例 。 許多內(nèi)置函數(shù)都是在編譯的C代碼中實(shí)現(xiàn)的。 基本的ufuncs對(duì)標(biāo)量進(jìn)行操作,但也有一種通用類型,基本元素是子數(shù)組(向量,矩陣等), 廣播是在其他維度上完成的。也可以ufunc使用frompyfuncopen in new window工廠函數(shù)生成自定義實(shí)例。

2.2 numpy.ufunc.nin和numpy.ufunc.nout

        該函數(shù)表述出對(duì)應(yīng)ufun函數(shù)的輸入?yún)?shù)數(shù)量,如下列ufunc時(shí)對(duì)應(yīng)的輸入?yún)?shù)個(gè)數(shù)。

np.add.nin
2
np.multiply.nin
2
np.power.nin
2
np.exp.nin
2

         該函數(shù)表述出對(duì)應(yīng)ufun函數(shù)的輸出參數(shù)數(shù)量,如下列ufunc時(shí)對(duì)應(yīng)的輸入?yún)?shù)個(gè)數(shù)。

np.add.nout
1
np.multiply.nout
1
np.power.nout
1
np.exp.nout
1

2.3 numpy.ufunc.nargs

numpy.ufunc對(duì)應(yīng)參數(shù)的個(gè)數(shù),

np.add.nargs
3
np.multiply.nargs
3
np.power.nargs
3
np.exp.nargs
2

 如np.add函數(shù)有三個(gè)參數(shù),兩個(gè)輸入,一個(gè)輸出,如下:

a = np.array([2,4,5,6])
b = np.array([2,2,3,3])
c = np.zeros((4,))
np.add(  a,b,c )
print( c )

2.4  numpy.ufunc.ntypes

        表明一個(gè)ufunc的輸入數(shù)據(jù)類型格式:ufunc 可以操作的數(shù)字 NumPy 類型的數(shù)量——總共有 18 種。

np.add.ntypes
18
np.multiply.ntypes
18
np.power.ntypes
17
np.exp.ntypes
7
np.remainder.ntypes
14

 2.5  numpy.ufunc.type

np.add.types
['??->?', 'bb->b', 'BB->B', 'hh->h', 'HH->H', 'ii->i', 'II->I', 'll->l',
'LL->L', 'qq->q', 'QQ->Q', 'ff->f', 'dd->d', 'gg->g', 'FF->F', 'DD->D',
'GG->G', 'OO->O']
np.multiply.types
['??->?', 'bb->b', 'BB->B', 'hh->h', 'HH->H', 'ii->i', 'II->I', 'll->l',
'LL->L', 'qq->q', 'QQ->Q', 'ff->f', 'dd->d', 'gg->g', 'FF->F', 'DD->D',
'GG->G', 'OO->O']
np.power.types
['bb->b', 'BB->B', 'hh->h', 'HH->H', 'ii->i', 'II->I', 'll->l', 'LL->L',
'qq->q', 'QQ->Q', 'ff->f', 'dd->d', 'gg->g', 'FF->F', 'DD->D', 'GG->G',
'OO->O']
np.exp.types
['f->f', 'd->d', 'g->g', 'F->F', 'D->D', 'G->G', 'O->O']
np.remainder.types
['bb->b', 'BB->B', 'hh->h', 'HH->H', 'ii->i', 'II->I', 'll->l', 'LL->L',
'qq->q', 'QQ->Q', 'ff->f', 'dd->d', 'gg->g', 'OO->O']

2.6 維度ndim和shape

        表明維度的參數(shù)有兩個(gè),array.ndim  和 array.shape,其中ndim是指張量共幾個(gè)維度,shape是指每個(gè)維度下的向量長(zhǎng)度。比如下例:

x = np.array([1, 2, 3])
print(x.ndim)
print(x.shape)
 
y = np.zeros((2, 3, 4))
print(y.ndim)
print(y.shape)

 結(jié)果:

1
(3,)
3
(2, 3, 4)

三、ufunc的廣播特性

        每個(gè)通函數(shù)接受數(shù)組輸入并通過(guò)在輸入上逐元素地執(zhí)行核心功能來(lái)生成數(shù)組輸出(其中元素通常是標(biāo)量,但可以是用于廣義ufunc的向量或更高階子數(shù)組)。 應(yīng)用標(biāo)準(zhǔn)廣播規(guī)則,以便仍然可以有效地操作不共享完全相同形狀的輸入。 廣播可以通過(guò)四個(gè)規(guī)則來(lái)理解:

  1. 所有輸入數(shù)組都ndimopen in new window小于最大的輸入數(shù)組,ndimopen in new window其形狀前面有1個(gè)。

  2. 輸出形狀的每個(gè)維度的大小是該維度中所有輸入大小的最大值。

  3. 如果輸入在特定維度中的大小與該維度中的輸出大小匹配,或者其值正好為1,則可以在計(jì)算中使用該輸入。

  4. 如果輸入的形狀尺寸為1,則該維度中的第一個(gè)數(shù)據(jù)條目將用于沿該維度的所有計(jì)算。換句話說(shuō),ufuncopen in new window的步進(jìn)機(jī)械 將不會(huì)沿著該維度步進(jìn)(對(duì)于該維度,步幅將為0)。

        整個(gè)NumPy使用廣播來(lái)決定如何處理不同形狀的數(shù)組; 例如,所有算術(shù)運(yùn)算(+, -*之間,...)ndarraysopen in new window的數(shù)組操作之前廣播。

        如果上述規(guī)則產(chǎn)生有效結(jié)果,則將一組數(shù)組稱為“可廣播”到相同的形狀, 即 滿足下列條件之一:

  • 數(shù)組都具有完全相同的形狀。

  • 數(shù)組都具有相同的維數(shù),每個(gè)維度的長(zhǎng)度是公共長(zhǎng)度或1。

  • 尺寸太小的數(shù)組可以使其形狀前置為長(zhǎng)度為1的尺寸以滿足屬性2。

        如果a.shape是 (5,1),b.shape是 (1,6),c.shape是 (6,)并且d.shape是 () 使得 d 是標(biāo)量,則 a , b , c 和 d 都可以廣播到維度 (5, 6); 和:

  • a 的作用類似于(5,6)數(shù)組,其中 [:, 0] 廣播到其他列,

  • b 的作用類似于(5,6)數(shù)組,其中 b[0, :] 廣播到其他行,

  • c 就像一個(gè)(1,6)數(shù)組,因此像一個(gè)(5,6)數(shù)組,其中 c[:] 廣播到每一行,最后,

  • d 的作用類似于(5,6)數(shù)組,其中重復(fù)單個(gè)值。

四、函數(shù)格式

        可以在通用函數(shù) (ufunc) 的文檔中找到有關(guān) ufunc 的詳細(xì)說(shuō)明。

         調(diào)用ufuncs格式

        op( *x[, out], where=True, **kwargs)

將 op 應(yīng)用于參數(shù) *x elementwise,廣播參數(shù)。

廣播規(guī)則是:

長(zhǎng)度為 1 的維度可以添加到任一數(shù)組之前。

數(shù)組可以沿長(zhǎng)度為 1 的維度重復(fù)。

參數(shù):

        *xarray_like

        outndarray,None,或 ndarray 和 None 的元組,可選

        用于放置結(jié)果的備用數(shù)組對(duì)象;如果提供,它必須具有輸入廣播的形狀。數(shù)組元組(可能僅作為關(guān)鍵字參數(shù))的長(zhǎng)度必須等于輸出的數(shù)量;對(duì) ufunc 分配的未初始化輸出使用 None。

        wherearray_like,可選

        此條件通過(guò)輸入廣播。在條件為 True 的位置,out 數(shù)組將設(shè)置為 ufunc 結(jié)果。在其他地方,out 數(shù)組將保留其原始值。請(qǐng)注意,如果通過(guò)默認(rèn) out=None 創(chuàng)建未初始化的 out 數(shù)組,則其中條件為 False 的位置將保持未初始化狀態(tài)。

五、示例詳解 

5.1 用輸出參數(shù)

a = np.array([2,4,5,6])
b = np.array([2,2,3,3])
c = np.zeros((4,))
np.add(  a,b,c )
print( c )

5.2 行數(shù)組和列數(shù)組 

a = np.arange(3)
b = np.arange(3)[:, np.newaxis]
 
print(a)
print(b)

輸出: 

[0 1 2]
[[0]
 [1]
 [2]] 

5.3 廣播規(guī)則示例

a = np.arange(3)
b = np.arange(3)[:, np.newaxis]
 
print(a)
print(b)
 
s = a + b
print(s)

六、ufunc后的數(shù)列運(yùn)算

6.1 數(shù)列運(yùn)算

在執(zhí)行ufunc運(yùn)算后,常常伴隨數(shù)列運(yùn)算,它們?nèi)缦?/p>

__call__(*args, **kwargs)

Call self as a function.

accumulate(array[, axis, dtype, out])

Accumulate the result of applying the operator to all elements.

at(a, indices[, b])

Performs unbuffered in place operation on operand 'a' for elements specified by 'indices'.

outer(A, B, /, **kwargs)

Apply the ufunc op to all pairs (a, b) with a in A and b in B.

reduce(array[, axis, dtype, out, keepdims, ...])

Reduces array's dimension by one, by applying ufunc along one axis.

reduceat(array, indices[, axis, dtype, out])

Performs a (local) reduce with specified slices over a single axis.

resolve_dtypes(dtypes, *[, signature, ...])

Find the dtypes NumPy will use for the operation.

6.2 累計(jì)模式

累計(jì)模式不可以單獨(dú)使用,而是與add以及multiply搭配使用:

np.add.accumulate([2, 3, 5])
array([ 2,  5, 10])
np.multiply.accumulate([2, 3, 5])
array([ 2,  6, 30])
np.add.accumulate(I, 0)
array([[1.,  0.],
       [1.,  1.]])
np.add.accumulate(I) # no axis specified = axis zero
array([[1.,  0.],
       [1.,  1.]])

6.3 對(duì)數(shù)組中某個(gè)index的元素進(jìn)行局部處理 

         1)   將項(xiàng)目 0 和 1 設(shè)置為負(fù)值:

a = np.array([1, 2, 3, 4])
np.negative.at(a, [0, 1])
print( a )
array([-1, -2,  3,  4])

         2)  遞增項(xiàng)目 0 和 1,遞增項(xiàng)目 2 兩次:

a = np.array([1, 2, 3, 4])
np.add.at(a, [0, 1, 2, 2], 1)
print( a )
array([2, 3, 5, 4])

         3) 將第一個(gè)數(shù)組中的項(xiàng) 0 和 1 添加到第二個(gè)數(shù)組,并將結(jié)果存儲(chǔ)在第一個(gè)數(shù)組中:

a = np.array([1, 2, 3, 4])
b = np.array([1, 2])
np.add.at(a, [0, 1], b)
print(a)
array([2, 4, 3, 4])

 6.4 outer外積

簡(jiǎn)單數(shù)組外積

np.multiply.outer([1, 2, 3], [4, 5, 6])
array([[ 4,  5,  6],
       [ 8, 10, 12],
       [12, 15, 18]])

張量的外積 

A = np.array([[1, 2, 3], [4, 5, 6]])
A.shape
(2, 3)
B = np.array([[1, 2, 3, 4]])
B.shape
(1, 4)
C = np.multiply.outer(A, B)
C.shape; C
(2, 3, 1, 4)
array([[[[ 1,  2,  3,  4]],
        [[ 2,  4,  6,  8]],
        [[ 3,  6,  9, 12]]],
       [[[ 4,  8, 12, 16]],
        [[ 5, 10, 15, 20]],
        [[ 6, 12, 18, 24]]]])

 6.5 reduce方法

a = np.multiply.reduce([2,3,5])
print( a)
30
X = np.arange(8).reshape((2,2,2))
X
array([[[0, 1],
        [2, 3]],
       [[4, 5],
        [6, 7]]])
np.add.reduce(X, 0)
array([[ 4,  6],
       [ 8, 10]])
np.add.reduce(X) # confirm: default axis value is 0
array([[ 4,  6],
       [ 8, 10]])
np.add.reduce(X, 1)
array([[ 2,  4],
       [10, 12]])
np.add.reduce(X, 2)
array([[ 1,  5],
       [ 9, 13]])

您可以使用 initial 關(guān)鍵字參數(shù)以不同的值初始化縮減,以及在何處選擇要包含的特定元素:

np.add.reduce([10], initial=5)
15
np.add.reduce(np.ones((2, 2, 2)), axis=(0, 2), initial=10)
array([14., 14.])
a = np.array([10., np.nan, 10])
np.add.reduce(a, where=~np.isnan(a))
20.0
np.minimum.reduce([], initial=np.inf)
inf
np.minimum.reduce([[1., 2.], [3., 4.]], initial=10., where=[True, False])
array([ 1., 10.])
np.minimum.reduce([])
Traceback (most recent call last):

以上就是關(guān)于“Python中的numpy.ufunc函數(shù)怎么使用”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI