Files
openvino/docs/ops/arithmetic/Cosh_1.md
2023-04-21 13:30:07 +02:00

1.1 KiB

Cosh

@sphinxdirective

Versioned name: Cosh-1

Category: Arithmetic unary

Short description: Cosh performs element-wise hyperbolic cosine operation on a given input tensor.

Detailed description: Cosh performs element-wise hyperbolic cosine (cosh) operation on a given input tensor, based on the following mathematical formula:

.. math::

a_{i} = cosh(a_{i})

Attributes: Cosh operation has no attributes.

Inputs

  • 1: A tensor of type T and arbitrary shape. Required.

Outputs

  • 1: The result of element-wise Cosh operation. A tensor of type T and the same shape as the input tensor.

Types

  • T: any numeric type.

Example

.. code-block:: cpp

<layer ... type="Cosh"> 256 56 256 56

@endsphinxdirective