Asin // Elementwise asin operation
Description¶
Produces a tensor of the same element type and shape as arg,
where the value at each coordinate of output
is the inverse sine of the
value at the corresponding coordinate of arg.
Inputs¶
Name |
Element Type |
Shape |
---|---|---|
|
Any |
Any |
Outputs¶
Name |
Element Type |
Shape |
---|---|---|
|
Same as |
Same as |
Mathematical Definition¶
\[\mathtt{output}_{i_0, \ldots, i_{n-1}} = \sin^{-1}(\mathtt{arg}_{i_0, \ldots, i_{n-1}})\]
Backprop¶
\[\overline{\mathtt{arg}} \leftarrow \frac{\Delta}{\sqrt{1-\mathtt{arg}^2}}\]
C++ Interface¶
-
class
Asin
: public ngraph::op::util::UnaryElementwiseArithmetic¶ -
Elementwise inverse sine (arcsin) operation.
Public Functions
-
const std::string &
description
() const¶ -
Get the string name for the type of the node, such as
Add
orMultiply
. The class name, must not contain spaces as it is used for codegen.- Return
-
A const reference to the node’s type name
-
Asin
()¶ -
Constructs an arcsin operation.
-
Asin
(const Output<Node> &arg)¶ -
Constructs an arcsin operation.
Output
[d1, ...]
- Parameters
-
arg
: Output that produces the input tensor.[d1, ...]
-
const std::string &