📖 INDEX
LOADING ENGINE...
np.power()
AI & DATA SCIENCE // np-power
First array elements raised to powers from second array, element-wise (**).
Syntax
res = np.power(a, 2) # or a ** 2Examples
Example 01Basic Usage
res = np.power(a, 2) # or a ** 2Best Practices
- Refer to the official NumPy documentation for deep vectorization techniques.
- Avoid writing custom Python for-loops for operations that can be vectorized with NumPy.