| 653 | } |
| 654 | |
| 655 | static 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 | |
| 662 | static inline void |
| 663 | _inline_log( npy_complex128 x, npy_complex128 &r ) |
no outgoing calls
no test coverage detected
searching dependent graphs…