e^{iπτ·s} for real s
(tau: Complex, s: number)
| 945 | export function hypergeometric2F1Complex( |
| 946 | a: Complex, |
| 947 | b: Complex, |
| 948 | c: Complex, |
| 949 | z: Complex, |
| 950 | depth = 0 |
| 951 | ): Complex { |
| 952 | if (a.isNaN() || b.isNaN() || c.isNaN() || z.isNaN()) return C_NAN; |
no test coverage detected