
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Compute the inverse Hyperbolic cosine of array elements in Python
The arccosh is a multivalued function: for each x there are infinitely many numbers z such that cosh(z) = x. The convention is to return the z whose imaginary part lies in [-pi, pi] and the real part in [0, inf]. For real-valued input data types, arccosh 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, arccosh is a complex analytical function that has a branch cut [-inf, 1] and is continuous from above on it.
To compute the inverse Hyperbolic cosine of array elements, use the numpy.arccosh() method. The method returns the array of the same shape as x. This is a scalar if x is a scalar. The 1st parameter, x is input array. 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 libraries −
import numpy as np
Create an array using the array() method in Numpy −
arr = np.array((0., 30., 45., 60., 90., 180., np.pi*1j/2, np.pi*1j))
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)
To find the inverse hyperbolic cosine of the array elements, use the numpy.arccosh() method in Python Numpy −
print("\nResult...",np.arccosh(arr))
Example
import numpy as np # To compute the inverse Hyperbolic cosine of array elements, use the numpy.arccosh() method in Python Numpy # The method returns the array of the same shape as x. This is a scalar if x is a scalar. print("Get the Trigonometric inverse Hyperbolic cosine of array elements...") # Create an array using the array() method in Numpy arr = np.array((0., 30., 45., 60., 90., 180., np.pi*1j/2, np.pi*1j)) # 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) # To find the inverse hyperbolic cosine of the array elements, use the numpy.arccosh() method in Python Numpy print("\nResult...",np.arccosh(arr))
Output
Get the Trigonometric inverse Hyperbolic cosine of array elements... Array... [ 0.+0.j 30.+0.j 45.+0.j 60.+0.j 90.+0.j 180.+0.j 0.+1.57079633j 0.+3.14159265j] Our Array type... complex128 Our Array Dimensions... 1 Number of elements... 8 Result... [0. +1.57079633j 4.09406667+0.j 4.49968619+0.j 4.78742229+0.j 5.19292599+0.j 5.88609632+0.j 1.23340312+1.57079633j 1.86229574+1.57079633j]
- Related Articles
- Compute the inverse Hyperbolic cosine in Python
- Compute the Hyperbolic cosine of the array elements in Python
- How to compute the inverse cosine and inverse hyperbolic cosine in PyTorch?
- Compute the inverse Hyperbolic sine of array elements in Python
- Compute the inverse Hyperbolic tangent of array elements in Python
- Compute the Hyperbolic cosine in Python
- Compute the inverse Hyperbolic sine in Python
- Compute the inverse Hyperbolic tangent in Python
- Compute the inverse cosine with scimath in Python
- Get the Trigonometric inverse cosine of the array elements in Python
- Compute the Hyperbolic sine of the array elements in Python
- Compute the Hyperbolic tangent of the array elements in Python
- Compute the inverse hyperbolic tangent with scimath in Python
- How to compute the inverse hyperbolic sine in PyTorch?
- Compute the inverse of an N-dimensional array in Python
