Commit a3418769 authored by scoder's avatar scoder Committed by GitHub

Merge pull request #557 from MSeifert04/numpy_math_header

completed some signatures in Includes - libc.math and numpy.math
parents b30e538a c8051017
......@@ -91,7 +91,7 @@ cdef extern from "math.h" nogil:
long double erfcl(long double)
double fdim(double x, double y)
double fma(double x, double y)
double fma(double x, double y, double z)
double fmax(double x, double y)
double fmin(double x, double y)
double scalbln(double x, long n)
......
......@@ -79,11 +79,11 @@ cdef extern from "numpy/npy_math.h" nogil:
float log1pf "npy_log1pf"(float x)
float exp2f "npy_exp2f"(float x)
float log2f "npy_log2f"(float x)
float atan2f "npy_atan2f"(float x)
float hypotf "npy_hypotf"(float x)
float powf "npy_powf"(float x)
float fmodf "npy_fmodf"(float x)
float modff "npy_modff"(float x)
float atan2f "npy_atan2f"(float x, float y)
float hypotf "npy_hypotf"(float x, float y)
float powf "npy_powf"(float x, float y)
float fmodf "npy_fmodf"(float x, float y)
float modff "npy_modff"(float x, float* y)
# Long double C99 functions
long double sinl "npy_sinl"(long double x)
......@@ -110,11 +110,11 @@ cdef extern from "numpy/npy_math.h" nogil:
long double log1pl "npy_log1pl"(long double x)
long double exp2l "npy_exp2l"(long double x)
long double log2l "npy_log2l"(long double x)
long double atan2l "npy_atan2l"(long double x)
long double hypotl "npy_hypotl"(long double x)
long double powl "npy_powl"(long double x)
long double fmodl "npy_fmodl"(long double x)
long double modfl "npy_modfl"(long double x)
long double atan2l "npy_atan2l"(long double x, long double y)
long double hypotl "npy_hypotl"(long double x, long double y)
long double powl "npy_powl"(long double x, long double y)
long double fmodl "npy_fmodl"(long double x, long double y)
long double modfl "npy_modfl"(long double x, long double* y)
# NumPy extensions
float deg2radf "npy_deg2radf"(float x)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment