asinh#
- ivy.asinh(x, /, *, out=None)[source]#
Calculate an implementation-dependent approximation to the inverse hyperbolic sine, having domain
[-infinity, +infinity]and codomain[-infinity, +infinity], for each elementx_iin the input arrayx.Special cases
For floating-point operands,
If
x_iisNaN, the result isNaN.If
x_iis+0, the result is+0.If
x_iis-0, the result is-0.If
x_iis+infinity, the result is+infinity.If
x_iis-infinity, the result is-infinity.
For complex floating-point operands, let
a = real(x_i)andb = imag(x_i), andIf
ais+0andbis+0, the result is+0 + 0j.If
ais a positive (i.e., greater than0) finite number andbis+infinity, the result is+infinity + πj/2.If
ais a finite number andbisNaN, the result isNaN + NaN j.If
ais+infinityandbis a positive (i.e., greater than0) finite number, the result is+infinity + 0j.If
ais+infinityandbis+infinity, the result is+infinity + πj/4.If
aisNaNandbis+0, the result isNaN + 0j.If
aisNaNandbis nonzero finite number, the result isNaN + NaNj.If
aisNaNandbis+infinity, the result is±infinity ± NaNj, (sign of real component is unspecified).If
aisNaNandbisNaN,NaN + NaNj.
- Parameters:
- Return type:
- Returns:
ret – an array containing the inverse hyperbolic sine of each element in
x. The returned array must have a floating-point data type determined by type-promotion.
This function conforms to the Array API Standard. This docstring is an extension of the docstring in the standard.
Both the description and the type hints above assumes an array input for simplicity, but this function is nestable, and therefore also accepts
ivy.Containerinstances in place of any of the arguments.Examples
With
ivy.Arrayinput:>>> x = ivy.array([-3.5, -0, +0, 1.3, float('nan')]) >>> y = ivy.asinh(x) >>> print(y) ivy.array([-1.97, 0., 0., 1.08, nan])
>>> x = ivy.array([-2, -0.75, 0.9, 1]) >>> y = ivy.zeros(4) >>> ivy.asinh(x, out=y) >>> print(y) ivy.array([-1.44, -0.693, 0.809, 0.881])
>>> x = ivy.array([[0.2, 0.4, 0.6],[-0.8, -1, -2]]) >>> ivy.asinh(x, out=x) >>> print(x) ivy.array([[ 0.199, 0.39, 0.569], [-0.733, -0.881, -1.44]])
With
ivy.Containerinput:>>> x = ivy.Container(a=ivy.array([0., 1, 2]), ... b=ivy.array([4.2, -5.3, -0, -2.3])) >>> y = ivy.asinh(x) >>> print(y) { a: ivy.array([0., 0.881, 1.44]), b: ivy.array([2.14, -2.37, 0., -1.57]) }
- Array.asinh(self, *, out=None)[source]#
ivy.Array instance method variant of ivy.asinh. This method simply wraps the function, and so the docstring for ivy.asinh also applies to this method with minimal changes.
- Parameters:
self (
Array) – input array whose elements each represent the area of a hyperbolic sector. Should have a floating-point data type.out (
Optional[Array], default:None) – optional output array, for writing the result to. It must have a shape that the inputs broadcast to.
- Return type:
Array- Returns:
ret – an array containing the inverse hyperbolic sine of each element in
self. The returned array must have a floating-point data type determined by type-promotion.
Examples
>>> x = ivy.array([-1., 0., 3.]) >>> y = x.asinh() >>> print(y) ivy.array([-0.881, 0. , 1.82 ])
- Container.asinh(self, *, key_chains=None, to_apply=True, prune_unapplied=False, map_sequences=False, out=None)[source]#
ivy.Container instance method variant of ivy.asinh. This method simply wraps the function, and so the docstring for ivy.asinh also applies to this method with minimal changes.
- Parameters:
self (
Container) – input container whose elements each represent the area of a hyperbolic sector. Should have a floating-point data type.key_chains (
Optional[Union[List[str],Dict[str,str],Container]], default:None) – The key-chains to apply or not apply the method to. Default isNone.to_apply (
Union[bool,Container], default:True) – If True, the method will be applied to key_chains, otherwise key_chains will be skipped. Default isTrue.prune_unapplied (
Union[bool,Container], default:False) – Whether to prune key_chains for which the function was not applied. Default isFalse.map_sequences (
Union[bool,Container], default:False) – Whether to also map method to sequences (lists, tuples). Default isFalse.out (
Optional[Container], default:None) – optional output container, for writing the result to. It must have a shape that the inputs broadcast to.
- Return type:
Container- Returns:
ret – a container containing the inverse hyperbolic sine of each element in
self. The returned container must have a floating-point data type determined by type-promotion.
Examples
>>> x = ivy.Container(a=ivy.array([-1, 3.7, -5.1]), ... b=ivy.array([4.5, -2.4, -1.5])) >>> y = x.asinh() >>> print(y) { a: ivy.array([-0.881, 2.02, -2.33]), b: ivy.array([2.21, -1.61, -1.19]) }