Link Search Menu Expand Document

Atan2


tensorflow C++ API

tensorflow::ops::Atan2

Computes arctangent ofy/xelement-wise, respecting signs of the arguments.


Summary

This is the angle ( [-, ] ) such that [ x = r () ] and [ y = r () ] where (r = (x^2 + y^2) ).

Arguments:

Returns:

Constructor

  • Atan2(const ::tensorflow::Scope & scope, ::tensorflow::Input y, ::tensorflow::Input x).

Public attributes

  • tensorflow::Output z.

Atan2 block

Source link : https://github.com/EXPNUNI/enuSpaceTensorflow/blob/master/enuSpaceTensorflow/tf_math.cpp

Argument:

  • Scope scope : A Scope object (A scope is generated automatically each page. A scope is not connected.)
  • Input y :connect Input node.
  • Input x :connect Input node.

Return:

  • Output z : Output object of Atan2 class object.

Result:

  • std::vector(Tensor) product_result : Returned object of executed result by calling session.

Using Method