Return the normalized sinc function.
The sinc function is defined as sin(πx) / (πx) for x != 0, and 1 for x = 0. This is the normalized sinc function commonly used in signal processing.
sin(πx) / (πx)
x != 0
1
x = 0
Note: JVP is not supported at x=0 due to discontinuous derivative. This requires a custom JVP rule to handle properly (see JAX implementation).
Return the normalized sinc function.
The sinc function is defined as
sin(πx) / (πx)forx != 0, and1forx = 0. This is the normalized sinc function commonly used in signal processing.Note: JVP is not supported at x=0 due to discontinuous derivative. This requires a custom JVP rule to handle properly (see JAX implementation).