Created
December 2, 2014 09:59
-
-
Save b-rodrigues/a10b57ad2bb3e0089b15 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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