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

Function _inline_log

numexpr3/complex_functions.hpp:655–660  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

653}
654
655static inline void
656_inline_log( npy_complex64 x, npy_complex64 &r )
657{
658 r.imag = atan2f(x.imag, x.real);
659 r.real = logf( hypotf(x.real,x.imag) );
660}
661
662static inline void
663_inline_log( npy_complex128 x, npy_complex128 &r )

Callers 9

nc_logFunction · 0.85
nc_powFunction · 0.85
nc_acosFunction · 0.85
nc_acoshFunction · 0.85
nc_asinFunction · 0.85
nc_asinhFunction · 0.85
nc_atanFunction · 0.85
nc_atanhFunction · 0.85
nc_log10Function · 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…