예제 #1
0
 def cumprod(self, axis=None, dtype=None):
     if dtype is None:
         dtype = self.dtype
     return _maths.cumprod(self, axis).astype(dtype)
예제 #2
0
 def cumprod(self, axis=None, dtype=None):
     dtype = _translatenativetype(dtype)
     if dtype is None:
         dtype = self.dtype
     return _maths.cumprod(self, axis).astype(dtype)
예제 #3
0
 def cumprod(self, axis=None, dtype=None):
     if dtype is None:
         dtype = self.dtype
     return _maths.cumprod(self, axis).astype(dtype)