Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
c8051017
Commit
c8051017
authored
Aug 14, 2016
by
Michael Seifert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
completed some signatures in Includes libc.math and numpy.math
parent
a767e7e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
Cython/Includes/libc/math.pxd
Cython/Includes/libc/math.pxd
+1
-1
Cython/Includes/numpy/math.pxd
Cython/Includes/numpy/math.pxd
+10
-10
No files found.
Cython/Includes/libc/math.pxd
View file @
c8051017
...
@@ -91,7 +91,7 @@ cdef extern from "math.h" nogil:
...
@@ -91,7 +91,7 @@ cdef extern from "math.h" nogil:
long
double
erfcl
(
long
double
)
long
double
erfcl
(
long
double
)
double
fdim
(
double
x
,
double
y
)
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
fmax
(
double
x
,
double
y
)
double
fmin
(
double
x
,
double
y
)
double
fmin
(
double
x
,
double
y
)
double
scalbln
(
double
x
,
long
n
)
double
scalbln
(
double
x
,
long
n
)
...
...
Cython/Includes/numpy/math.pxd
View file @
c8051017
...
@@ -79,11 +79,11 @@ cdef extern from "numpy/npy_math.h" nogil:
...
@@ -79,11 +79,11 @@ cdef extern from "numpy/npy_math.h" nogil:
float
log1pf
"npy_log1pf"
(
float
x
)
float
log1pf
"npy_log1pf"
(
float
x
)
float
exp2f
"npy_exp2f"
(
float
x
)
float
exp2f
"npy_exp2f"
(
float
x
)
float
log2f
"npy_log2f"
(
float
x
)
float
log2f
"npy_log2f"
(
float
x
)
float
atan2f
"npy_atan2f"
(
float
x
)
float
atan2f
"npy_atan2f"
(
float
x
,
float
y
)
float
hypotf
"npy_hypotf"
(
float
x
)
float
hypotf
"npy_hypotf"
(
float
x
,
float
y
)
float
powf
"npy_powf"
(
float
x
)
float
powf
"npy_powf"
(
float
x
,
float
y
)
float
fmodf
"npy_fmodf"
(
float
x
)
float
fmodf
"npy_fmodf"
(
float
x
,
float
y
)
float
modff
"npy_modff"
(
float
x
)
float
modff
"npy_modff"
(
float
x
,
float
*
y
)
# Long double C99 functions
# Long double C99 functions
long
double
sinl
"npy_sinl"
(
long
double
x
)
long
double
sinl
"npy_sinl"
(
long
double
x
)
...
@@ -110,11 +110,11 @@ cdef extern from "numpy/npy_math.h" nogil:
...
@@ -110,11 +110,11 @@ cdef extern from "numpy/npy_math.h" nogil:
long
double
log1pl
"npy_log1pl"
(
long
double
x
)
long
double
log1pl
"npy_log1pl"
(
long
double
x
)
long
double
exp2l
"npy_exp2l"
(
long
double
x
)
long
double
exp2l
"npy_exp2l"
(
long
double
x
)
long
double
log2l
"npy_log2l"
(
long
double
x
)
long
double
log2l
"npy_log2l"
(
long
double
x
)
long
double
atan2l
"npy_atan2l"
(
long
double
x
)
long
double
atan2l
"npy_atan2l"
(
long
double
x
,
long
double
y
)
long
double
hypotl
"npy_hypotl"
(
long
double
x
)
long
double
hypotl
"npy_hypotl"
(
long
double
x
,
long
double
y
)
long
double
powl
"npy_powl"
(
long
double
x
)
long
double
powl
"npy_powl"
(
long
double
x
,
long
double
y
)
long
double
fmodl
"npy_fmodl"
(
long
double
x
)
long
double
fmodl
"npy_fmodl"
(
long
double
x
,
long
double
y
)
long
double
modfl
"npy_modfl"
(
long
double
x
)
long
double
modfl
"npy_modfl"
(
long
double
x
,
long
double
*
y
)
# NumPy extensions
# NumPy extensions
float
deg2radf
"npy_deg2radf"
(
float
x
)
float
deg2radf
"npy_deg2radf"
(
float
x
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment