(c)
| 106680 | const exp = (sign)=>(x)=>sign * Math.exp(x); |
| 106681 | const log = (sign)=>(x)=>Math.log(sign * x); |
| 106682 | const symlog = (c)=>(x)=>Math.sign(x) * Math.log1p(Math.abs(x / c)); |
| 106683 | const symexp = (c)=>(x)=>Math.sign(x) * Math.expm1(Math.abs(x)) * c; |
| 106684 | const pow = (exponent)=>(x)=>x < 0 ? -Math.pow(-x, exponent) : Math.pow(x, exponent); |
| 106685 | function pan(domain, delta, lift, ground) { |
no test coverage detected