Igammac
tensorflow C++ API
Compute the upper regularized incomplete Gamma functionQ(a, x)
.
Summary
The upper regularized incomplete Gamma function is defined as:
Q(a, x) = Gamma(a, x) / Gamma(a) = 1 - P(a, x)
where
Gamma(a, x) = int_{x}^{} t^{a-1} exp(-t) dt
is the upper incomplete Gama function.
Note, aboveP(a, x)
(Igamma
) is the lower regularized complete Gamma function.
Arguments:
- scope: A Scope object
Returns:
Output
: The z tensor.
Constructor
- Igammac(const ::tensorflow::Scope & scope, ::tensorflow::Input a, ::tensorflow::Input x).
Public attributes
- tensorflow::Output z.
Igammac 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 a:connect Input node.
- Input x:connect Input node.
Return:
- Output z: Output object of Igammac class object.
Result:
- std::vector(Tensor) product_result : Returned object of executed result by calling session.