Curriculum
Course: NumPy
Login

Curriculum

NumPy

Text lesson

ufunc Summations

Summations

The difference between summation and addition is that addition involves combining two arguments, while summation refers to the process of adding a series of n elements.

Example

Combine the values in arr1 with the values in arr2:

import numpy as np

arr1 = np.array([123])
arr2 = np.array([123])

newarr = np.add(arr1, arr2)

print(newarr)
Returns: [2, 4, 6]

Example

Calculate the sum of the values in arr1 and arr2:

import numpy as np

arr1 = np.array([123])
arr2 = np.array([123])

newarr = np.sum([arr1, arr2])

print(newarr)
Returns: 12