play around with cython

This commit is contained in:
neingeist 2014-09-01 23:03:51 +02:00
parent fa17225d95
commit 70ce7ab948
2 changed files with 61 additions and 0 deletions

16
cython_test.pyx Normal file
View file

@ -0,0 +1,16 @@
def say_hello_to(name):
print("Hello %s!" % name)
from math import sin
def f(double x):
return sin(x**2)
def integrate_f(double a, double b, int N):
cdef int i
cdef double s, dx
s = 0
dx = (b-a)/N
for i in range(N):
s += f(a+i*dx)
return s * dx