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

Function _inline_sub

numexpr3/complex_functions.hpp:195–200  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

193}
194
195static 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
202static inline void
203_inline_sub( npy_complex128 a, npy_complex128 b, npy_complex128 &r )

Callers 6

nc_subFunction · 0.85
nc_acosFunction · 0.85
nc_acoshFunction · 0.85
nc_asinFunction · 0.85
nc_atanFunction · 0.85
nc_atanhFunction · 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…