| 193 | } |
| 194 | |
| 195 | static inline void |
| 196 | _inline_sub( npy_complex64 a, npy_complex64 b, npy_complex64 &r ) |
| 197 | { |
| 198 | r.real = a.real - b.real; |
| 199 | r.imag = a.imag - b.imag; |
| 200 | } |
| 201 | |
| 202 | static inline void |
| 203 | _inline_sub( npy_complex128 a, npy_complex128 b, npy_complex128 &r ) |