tfp.math.betaincinv
Stay organized with collections
Save and categorize content based on your preferences.
Computes the inverse of tfp.math.betainc
with respect to x
.
tfp.math.betaincinv(
a, b, y, name=None
)
This function returns a value x
such that y = tfp.math.betainc(a, b, x)
.
Args |
a
|
Floating-point Tensor. Must be broadcastable with b and y .
|
b
|
Floating-point Tensor. Must be broadcastable with a and y .
|
y
|
Floating-point Tensor. Must be broadcastable with a and b .
|
name
|
A name for the operation (optional).
|
Returns |
betaincinv
|
Floating-point Tensor, inverse of the regularized incomplete
beta function computed element-wise.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-11-21 UTC.
[null,null,["Last updated 2023-11-21 UTC."],[],[],null,["# tfp.math.betaincinv\n\n\u003cbr /\u003e\n\n|-----------------------------------------------------------------------------------------------------------------------------------------|\n| [View source on GitHub](https://github.com/tensorflow/probability/blob/v0.23.0/tensorflow_probability/python/math/special.py#L848-L868) |\n\nComputes the inverse of [`tfp.math.betainc`](../../tfp/math/betainc) with respect to `x`. \n\n tfp.math.betaincinv(\n a, b, y, name=None\n )\n\nThis function returns a value `x` such that `y = tfp.math.betainc(a, b, x)`.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Args ---- ||\n|--------|----------------------------------------------------------------|\n| `a` | Floating-point Tensor. Must be broadcastable with `b` and `y`. |\n| `b` | Floating-point Tensor. Must be broadcastable with `a` and `y`. |\n| `y` | Floating-point Tensor. Must be broadcastable with `a` and `b`. |\n| `name` | A name for the operation (optional). |\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Returns ------- ||\n|--------------|---------------------------------------------------------------------------------------------------|\n| `betaincinv` | Floating-point Tensor, inverse of the regularized incomplete beta function computed element-wise. |\n\n\u003cbr /\u003e"]]