NumPy: Calculate the absolute value element-wise
NumPy Mathematics: Exercise-7 with Solution
Write a NumPy program to calculate the absolute value element-wise.
Sample Solution:-
Python Code:
import numpy as np
x = np.array([-10.2, 122.2, .20])
print("Original array:")
print(x)
print("Element-wise absolute value:")
print(np.absolute(x))
Sample Output:
Original array: [ -10.2 122.2 0.2] Element-wise absolute value: [ 10.2 122.2 0.2]
Pictorial Presentation:
Python-Numpy Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a NumPy program to get the element-wise remainder of an array of division.
Next: Write a NumPy program to round array elements to the given number of decimals.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
Python: Tips of the Day
Walrus Operator:
>>> a = ['j', 'a', 'k', 'd', 'c'] >>> if (n := len(a))%2 == 1: ... print(f'The number of letters is {n}, which is odd.') ... The number of letters is 5, which is odd.
- Exercises: Weekly Top 12 Most Popular Topics
- Pandas DataFrame: Exercises, Practice, Solution
- Conversion Tools
- JavaScript: HTML Form Validation
- SQL Exercises, Practice, Solution - SUBQUERIES
- C Programming Exercises, Practice, Solution : For Loop
- Python Exercises, Practice, Solution
- Python Data Type: List - Exercises, Practice, Solution
- C++ Basic: Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - exercises on Employee Database
- SQL Exercises, Practice, Solution - exercises on Movie Database
- SQL Exercises, Practice, Solution - exercises on Soccer Database
- C Programming Exercises, Practice, Solution : Recursion