MCPcopy Create free account
hub / github.com/pydata/numexpr / _inline_muli

Function _inline_muli

numexpr3/complex_functions.hpp:927–932  ·  view source on GitHub ↗

RAM: these functions multiply the argument by the imaginary number, j, and they are always used inline.

Source from the content-addressed store, hash-verified

925// RAM: these functions multiply the argument by the imaginary number, j,
926// and they are always used inline.
927static inline void
928_inline_muli( npy_complex64 x, npy_complex64 &r)
929{
930 r.real = -x.imag;
931 r.imag = x.real;
932}
933
934static inline void
935_inline_muli( npy_complex128 x, npy_complex128 &r)

Callers 2

nc_acosFunction · 0.85
nc_asinFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…