dpnp.tan

dpnp.tan(x, /, out=None, *, order='K', where=True, dtype=None, subok=True, **kwargs)[source]

Trigonometric tangent, element-wise.

For full documentation refer to numpy.tan.

Returns:

out – The tangent of each element of x.

Return type:

dpnp.ndarray

Limitations

Parameter x is only supported as either dpnp.ndarray or dpctl.tensor.usm_ndarray. Parameters where, dtype and subok are supported with their default values. Keyword argument kwargs is currently unsupported. Otherwise the function will be executed sequentially on CPU. Input array data types are limited by supported DPNP Data types.

See also

dpnp.arctan

Trigonometric inverse tangent, element-wise.

dpnp.sin

Trigonometric sine, element-wise.

dpnp.cos

Trigonometric cosine, element-wise.

dpnp.tanh

Hyperbolic tangent, element-wise.

Examples

>>> import dpnp as np
>>> x = np.array([-np.pi, np.pi/2, np.pi])
>>> np.tan(x)
array([1.22460635e-16, 1.63317787e+16, -1.22460635e-16])