
- Python 3 Basic Tutorial
- Python 3 - Home
- What is New in Python 3
- Python 3 - Overview
- Python 3 - Environment Setup
- Python 3 - Basic Syntax
- Python 3 - Variable Types
- Python 3 - Basic Operators
- Python 3 - Decision Making
- Python 3 - Loops
- Python 3 - Numbers
- Python 3 - Strings
- Python 3 - Lists
- Python 3 - Tuples
- Python 3 - Dictionary
- Python 3 - Date & Time
- Python 3 - Functions
- Python 3 - Modules
- Python 3 - Files I/O
- Python 3 - Exceptions
Get the Trigonometric inverse cosine of the array elements in Python
The arccos is a multivalued function: for each x there are infinitely many numbers z such that cos(z) = x. The convention is to return the angle z whose real part lies in [0, pi]. The inverse cos is also known as acos or cos^-1.
For real-valued input data types, arccos always returns real output. For each value that cannot be expressed as a real number or infinity, it yields nan and sets the invalid floating point error flag. For complex-valued input, arccos is a complex analytic function that has branch cuts [-inf, -1] and [1, inf] and is continuous from above on the former and from below on the latter.
To find the Trigonometric inverse cosine of the array elements, use the numpy.arccos() method in Python Numpy. The method returns the angle of the array intersecting the unit circle at the given xcoordinate in radians [0, pi]. This is a scalar if x is a scalar.
The 1st parameter, x is the x-coordinate on the unit circle. For real arguments, the domain is [-1, 1], The 2nd and 3rd parameters are optional. The 2nd parameter is an ndarray, A location into which the result is stored. If provided, it must have a shape that the inputs broadcast to. If not provided or None, a freshly-allocated array is returned.
The 3rd parameter is the condition is broadcast over the input. At locations where the condition is True, the out array will be set to the ufunc result. Elsewhere, the out array will retain its original value.
Steps
At first, import the required library −
import numpy as np
Get the Trigonometric inverse cosine of the array elements. Array created using the numpy.array() method −
arr = np.array((1, -1, 0, 0.3))
Displaying our array −
print("Array...\n",arr)
Get the datatype −
print("\nArray datatype...\n",arr.dtype)
Get the dimensions of the Array −
print("\nArray Dimensions...\n",arr.ndim)
Get the number of elements of the Array −
print("\nNumber of elements in the Array...\n",arr.size)
Finding the Trigonometric inverse cosine of the array elements −
print("\nResult...",np.arccos(arr))
Example
import numpy as np # To find the Trigonometric inverse cosine of the array elements, use the numpy.arccos() method in Python Numpy # The method returns the angle of the array intersecting the unit circle at the given x-coordinate in radians [0, pi]. This is a scalar if x is a scalar. # The 1st parameter, x is the x-coordinate on the unit circle. For real arguments, the domain is [-1, 1]. print("Get the Trigonometric inverse cosine of the array elements...\n") # Array created using the numpy.array() method arr = np.array((1, -1, 0, 0.3)) # Display the array print("Array...\n", arr) # Get the type of the array print("\nOur Array type...\n", arr.dtype) # Get the dimensions of the Array print("\nOur Array Dimensions...\n",arr.ndim) # Get the number of elements in the Array print("\nNumber of elements...\n", arr.size) # Finding the Trigonometric inverse cosine of the array elements print("\nResult...",np.arccos(arr))
Output
Get the Trigonometric inverse cosine of the array elements... Array... [ 1. -1. 0. 0.3] Our Array type... float64 Our Array Dimensions... 1 Number of elements... 4 Result... [0. 3.14159265 1.57079633 1.26610367]
- Related Articles
- Get the Trigonometric inverse cosine in Python
- Get the Trigonometric inverse sine of the array elements in Python
- Get the Trigonometric inverse tangent of the array elements in Python
- Compute the inverse Hyperbolic cosine of array elements in Python
- Get the Trigonometric cosine of an angle in Python
- Get the Trigonometric inverse sin in Python
- Get the Trigonometric inverse tangent in Python
- Get the Trigonometric cosine of an array of angles given in degrees with Python
- Compute the inverse Hyperbolic cosine in Python
- Compute the Hyperbolic cosine of the array elements in Python
- Compute the inverse cosine with scimath in Python
- How to compute the inverse cosine and inverse hyperbolic cosine in PyTorch?
- Get the inverse of a 3D array in Python
- Compute the inverse Hyperbolic sine of array elements in Python
- Compute the inverse Hyperbolic tangent of array elements in Python
