(x)
| 52 | |
| 53 | @support_sz(6) |
| 54 | def lanczos3(x): |
| 55 | fw, to_dtype, eps = set_framework_dependencies(x) |
| 56 | return (((fw.sin(pi * x) * fw.sin(pi * x / 3) + eps) / |
| 57 | ((pi**2 * x**2 / 3) + eps)) * to_dtype(abs(x) < 3)) |
| 58 | |
| 59 | |
| 60 | @support_sz(2) |
nothing calls this directly
no test coverage detected