math.erfcinv() 函数
math.erfcinv() 返回 math.erfc() 的反函数。
函数类型签名
(x: float) => float
有关更多信息,请参见 Function type signatures。
参数
x
(必填) 要操作的值。
x 应该大于 0 且小于 2。否则操作将返回 NaN。
示例
返回逆补充误差函数
import "math"
math.erfcinv(x: 0.42345)// 0.5660037715858239
在map中使用math.erfcinv
import "math"
data
|> map(fn: (r) => ({r with _value: math.erfcinv(x: r._value)}))