tf.math.erfcinv
Вычисляет обратную функцию дополнительной функции ошибок.
tf.math.erfcinv(
x, name=None
)
При заданном x, вычислите обратную дополнительную функцию ошибок для x. Эта функция является обратной к tf.math.erfc и определена на [0, 2].
tf.math.erfcinv([0., 0.2, 1., 1.5, 2.])
<tf.Tensor: shape=(5,), dtype=float32, numpy=
array([ inf, 0.9061935, -0. , -0.4769363, -inf],
dtype=float32)>
| Аргументы | |
|---|---|
x | Tensor с типом float или double. |
name | Имя операции (необязательно). |
| Возвращает | |
|---|---|
Обратная дополнительная функция ошибок для x. |
Совместимость с numpy
Эквивалентно scipy.special.erfcinv
© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.9/api_docs/python/tf/math/erfcinv