torchkbnufft.conj_complex_mult

conj_complex_mult(val1, val2, dim=-1)[source]

Complex multiplication, conjugating second input.

Parameters
  • val1 (Tensor) – A tensor to be multiplied.

  • val2 (Tensor) – A second tensor to be conjugated then multiplied.

  • dim (int) – An integer indicating the complex dimension (for real inputs only).

Return type

Tensor

Returns

val3 = val1 * conj(val2), where * executes complex multiplication.