N-dimensional version of cumprod.
(array, axis=None, **kwargs)
| 810 | |
| 811 | |
| 812 | def cumprod(array, axis=None, **kwargs): |
| 813 | """N-dimensional version of cumprod.""" |
| 814 | return _nd_cum_func(cumprod_1d, array, axis, **kwargs) |
| 815 | |
| 816 | |
| 817 | def cumsum(array, axis=None, **kwargs): |
nothing calls this directly
no test coverage detected
searching dependent graphs…