NumPy Tutorial · NumPy ufunc
ufunc Products
Learn all about ufunc Products in this comprehensive tutorial.
5 min read advanced
- •To find the product of the elements in an array, use the prod() function.
- •If you specify axis=1, NumPy will return the product of each array.
- •Cummulative product means taking the product partially.
Products
To find the product of the elements in an array, use the prod() function.
python
Note: Returns: 24 because 1*2*3*4 = 24
python
Note: Returns: 40320 because 1*2*3*4*5*6*7*8 =
40320
Product Over an Axis
If you specify axis=1, NumPy will return the product of each array.
python
Note: Returns: [24 1680]
Cummulative Product
Cummulative product means taking the product partially.
E.g. The partial product of [1, 2, 3, 4] is [1, 1*2, 1*2*3, 1*2*3*4] = [1, 2, 6, 24]
Perfom partial sum with the cumprod() function.
python
Note: Returns: [5 30 210 1680]
Module quiz
2 questions1
Which of the following is true about ufunc Products?
2
What is the most common pitfall when working with ufunc Products?
Answer all questions to submit.