
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Cube Each Element in a Numpy Array
To cube each element in an array., element-wise, use the numpy.power() method in Python. Here, the 1st parameter is the base and the 2nd exponents. Since, we want the cube, the exponent is 3.
Raise each base in x1 to the positionally-corresponding power in x2. x1 and x2 must be broadcastable to the same shape. An integer type raised to a negative integer power will raise a ValueError. Negative values raised to a non-integral value will return nan. To get complex results, cast the input to complex, or specify the dtype to be complex.
Steps
At first, import the required library −
import numpy as np
Create an array −
arr = np.array([5, 10, 25, 7, 9])
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 Dimension...
",arr.ndim)
Get the shape of the Array −
print("
Our Array Shape...
",arr.shape)
To cube each element in an array., element-wise, use the numpy.power() method in Python. Here, the 1st parameter is the base and the 2nd exponents. Since, we want the cube, the exponent is 3 −
print("
Result...
",np.power(arr, 3))
Example
import numpy as np # Create an array arr = np.array([5, 10, 25, 7, 9]) # 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 Dimension...
",arr.ndim) # Get the shape of the Array print("
Our Array Shape...
",arr.shape) # To cube each element in an array., element-wise, use the numpy.power() method in Python # Here, the 1st parameter is the base and the 2nd exponents # Since, we want the cube, the exponent is 3 print("
Result...
",np.power(arr, 3))
Output
Array... [ 5 10 25 7 9] Our Array type... int64 Our Array Dimension... 1 Our Array Shape... (5,) Result... [ 125 1000 15625 343 729]