tf.math.erfcinv
Computes the inverse of complementary error function.
tf.math.erfcinv( x, name=None )
Given x
, compute the inverse complementary error function of x
. This function is the inverse of tf.math.erfc
, and is defined on [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)>
Args | |
---|---|
x | Tensor with type float or double . |
name | A name for the operation (optional). |
Returns | |
---|---|
Inverse complementary error function of x . |
Numpy Compatibility
Equivalent to scipy.special.erfcinv
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.4/api_docs/python/tf/math/erfcinv