在 Numpy 中沿軸對多維陣列應用累加
要累加對所有元素應用運算子的結果,請在 Python Numpy 中使用 **numpy.accumulate()** 方法。對於多維陣列,累加僅沿一個軸應用。
**numpy.ufunc** 具有逐元素對整個陣列進行運算的功能。ufunc是用 C 編寫的(為了提高速度),並透過 NumPy 的 ufunc 功能連結到 Python。
通用函式(簡稱 ufunc)是在元素級上對 ndarray 進行運算的函式,支援陣列廣播、型別轉換以及其他一些標準功能。也就是說,ufunc 是一個“向量化”包裝器,用於一個函式,該函式接受固定數量的特定輸入併產生固定數量的特定輸出。
步驟
首先,匯入所需的庫 -
import numpy as np
建立一個二維陣列。numpy.eye() 返回一個二維陣列,其中對角線為 1,其他位置為 0 -
arr = np.eye(3)
顯示陣列 -
print("Array...
", arr)獲取陣列的型別 -
print("
Our Array type...
", arr.dtype)
獲取陣列的維度 -
print("
Our Array Dimensions...
",arr.ndim)要累加對所有元素應用運算子的結果,請在 Python Numpy 中使用 numpy.accumulate() 方法。對於多維陣列,累加僅沿一個軸應用。
新增累加:沿軸 0(行)累加 -
print("
Add accumulate...
",np.add.accumulate(arr, 0))
乘法累加 -
print("
Multiply accumulate...
",np.multiply.accumulate(arr, 0))示例
import numpy as np
import numpy.ma as ma
# The numpy.ufunc has functions that operate element by element on whole arrays.
# ufuncs are written in C (for speed) and linked into Python with NumPy’s ufunc facility
# Create a 2d array.
# The numpy.eye() returns a 2-D array with 1’s as the diagonal and 0’s elsewhere.
arr = np.eye(3)
# Display the array
print("Array...
", arr)
# Get the type of the array
print("
Our Array type...
", arr.dtype)
# Get the dimensions of the Array
print("
Our Array Dimensions...
",arr.ndim)
# To Accumulate the result of applying the operator to all elements, use the numpy.accumulate() method in Python Numpy
# For a multi-dimensional array, accumulate is applied along only one axis
# Add accumulate
# Accumulate along axis 0 (rows)
# Add accumulate
print("
Add accumulate...
",np.add.accumulate(arr, 0))
# Multiply accumulate
print("
Multiply accumulate...
",np.multiply.accumulate(arr, 0))輸出
Array... [[1. 0. 0.] [0. 1. 0.] [0. 0. 1.]] Our Array type... float64 Our Array Dimensions... 2 Add accumulate... [[1. 0. 0.] [1. 1. 0.] [1. 1. 1.]] Multiply accumulate... [[1. 0. 0.] [0. 0. 0.] [0. 0. 0.]]
廣告
資料結構
網路
關係型資料庫管理系統
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP