Skip to contents

Element-wise complementary error function erfc(x) = 1 - erf(x).

Usage

nv_erfc(operand)

Arguments

operand

(arrayish)
Operand.

Value

arrayish
Has the same shape and data type as the input.

See also

prim_erfc() for the underlying primitive.

Examples

x <- nv_array(c(-1, 0, 1))
nv_erfc(x)
#> AnvlArray
#>  1.8427
#>  1.0000
#>  0.1573
#> [ CPUf32{3} ]