Skip to content

Instantly share code, notes, and snippets.

@b-rodrigues
Created December 2, 2014 09:59
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 b-rodrigues/a10b57ad2bb3e0089b15 to your computer and use it in GitHub Desktop.
Save b-rodrigues/a10b57ad2bb3e0089b15 to your computer and use it in GitHub Desktop.
cimport cython
from MatOpC cimport MatOpC
@cython.boundscheck(False)
@cython.wraparound(False)
cdef class wrapclass:
cdef public MatOpC matopobj
def __init__(self, matopobj):
self.matopobj = matopobj
cpdef matsumC(self):
return(self.matopobj.cumsumC())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment