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