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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
a7506d0c
Commit
a7506d0c
authored
Feb 18, 2011
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more declarations in math.pxd
parent
957e1324
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
0 deletions
+48
-0
Cython/Includes/libc/math.pxd
Cython/Includes/libc/math.pxd
+48
-0
No files found.
Cython/Includes/libc/math.pxd
View file @
a7506d0c
...
...
@@ -29,9 +29,57 @@ cdef extern from "math.h":
double
asinh
(
double
x
)
double
atanh
(
double
x
)
double
hypot
(
double
x
,
double
y
)
double
exp
(
double
x
)
double
exp2
(
double
x
)
double
expm1
(
double
x
)
double
log
(
double
x
)
double
logb
(
double
x
)
double
log2
(
double
x
)
double
log10
(
double
x
)
double
log1p
(
double
x
)
int
ilogb
(
double
x
)
double
lgamma
(
double
x
)
double
tgamma
(
double
x
)
double
frexp
(
double
x
,
double
*
exponent
)
double
ldexp
(
double
x
,
double
exponent
)
double
modf
(
double
x
,
double
*
iptr
)
double
fmod
(
double
x
,
double
y
)
double
remainder
(
double
x
,
double
y
)
double
remquo
(
double
x
,
double
y
,
int
*
quot
)
double
pow
(
double
x
,
double
y
)
double
sqrt
(
double
x
)
double
cbrt
(
double
x
)
double
fabs
(
double
x
)
double
ceil
(
double
x
)
double
floor
(
double
x
)
double
trunc
(
double
x
)
double
rint
(
double
x
)
double
round
(
double
x
)
double
nearbyint
(
double
x
)
double
nextafter
(
double
,
double
)
double
nexttoward
(
double
,
long
double
)
long
long
llrint
(
double
)
long
lrint
(
double
)
long
long
llround
(
double
)
long
lround
(
double
)
double
copysign
(
double
,
double
)
double
erf
(
double
)
double
erfc
(
double
)
double
fdim
(
double
x
,
double
y
)
double
fma
(
double
x
,
double
y
)
double
fmax
(
double
x
,
double
y
)
double
fmin
(
double
x
,
double
y
)
double
scalbln
(
double
x
,
long
n
)
double
scalbn
(
double
x
,
int
n
)
double
nan
(
char
*
)
# const char*
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