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.
Combine the values in arr1 with the values in arr2:
import numpy as np arr1 = np.array([1, 2, 3]) arr2 = np.array([1, 2, 3]) newarr = np.add(arr1, arr2) print(newarr) |
Returns: [2, 4, 6] |
Calculate the sum of the values in arr1
and arr2
:
import numpy as np arr1 = np.array([1, 2, 3]) arr2 = np.array([1, 2, 3]) newarr = np.sum([arr1, arr2]) print(newarr) |
Returns: 12 |