Esempio n. 1
0
 def cumsum(self, axis=None, dtype=None):
     if dtype is None:
         dtype = self.dtype
     return _maths.cumsum(self, axis).astype(dtype)
Esempio n. 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)
Esempio n. 3
0
 def cumsum(self, axis=None, dtype=None):
     if dtype is None:
         dtype = self.dtype
     return _maths.cumsum(self, axis).astype(dtype)