示例#1
0
 def cumsum(self, axis=None, dtype=None):
     if dtype is None:
         dtype = self.dtype
     return _maths.cumsum(self, axis).astype(dtype)
示例#2
0
 def cumsum(self, axis=None, dtype=None):
     dtype = _translatenativetype(dtype)
     if dtype is None:
         dtype = self.dtype
     return _maths.cumsum(self, axis).astype(dtype)
示例#3
0
 def cumsum(self, axis=None, dtype=None):
     if dtype is None:
         dtype = self.dtype
     return _maths.cumsum(self, axis).astype(dtype)