Skip to content

Instantly share code, notes, and snippets.

@jskDr

jskDr/scix.pyx Secret

Created May 11, 2014 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jskDr/e3c676384f2383e69072 to your computer and use it in GitHub Desktop.
Save jskDr/e3c676384f2383e69072 to your computer and use it in GitHub Desktop.
science library written by Cython, which is a python compiler
# Use python standard library, which is log() in math
import math
def kmc( float x):
cdef float t
t = math.log( x)
return t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment