conv_inter

conv_inter(x, axis=1)

Convolve interleaved signals (e.g. real/imag parts stored sequentially).

Parameters:
  • x (jnp.ndarray) – Input array.

  • axis (int, optional, default=1) – Axis along which to convolve.

Returns:

The convolved result.

Return type:

jnp.ndarray

Raises:

Exception – If the input is not 1D or axis is not 1 (not yet implemented).