(x)
| 45 | |
| 46 | @support_sz(4) |
| 47 | def lanczos2(x): |
| 48 | fw, to_dtype, eps = set_framework_dependencies(x) |
| 49 | return (((fw.sin(pi * x) * fw.sin(pi * x / 2) + eps) / |
| 50 | ((pi**2 * x**2 / 2) + eps)) * to_dtype(abs(x) < 2)) |
| 51 | |
| 52 | |
| 53 | @support_sz(6) |
nothing calls this directly
no test coverage detected