Skip to content

Instantly share code, notes, and snippets.

@jskDr

jskDr/mathx.pyx Secret

Last active August 29, 2015 14:00
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/587440ccc89812611c31 to your computer and use it in GitHub Desktop.
Save jskDr/587440ccc89812611c31 to your computer and use it in GitHub Desktop.
Mathematical codes written in Cython
# Define a mathematical function with type definitions
def inverse(float x):
cdef float y
y = 1.0 / x
return y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment