math.erfcinv() 函数
math.erfcinv()
返回 math.erfc()
的反函数。
函数类型签名
(x: float) => float
更多信息,请参阅 函数类型签名。
参数
x
(Required) 要操作的值。
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)}))
此页是否对您有帮助?
感谢您的反馈!