Return the sum along diagonals of the array. Refer to :func:`dask.array.trace` for full documentation. See Also -------- dask.array.trace : equivalent function
(self, offset=0, axis1=0, axis2=1, dtype=None)
| 2614 | ) |
| 2615 | |
| 2616 | def trace(self, offset=0, axis1=0, axis2=1, dtype=None): |
| 2617 | """Return the sum along diagonals of the array. |
| 2618 | |
| 2619 | Refer to :func:`dask.array.trace` for full documentation. |
| 2620 | |
| 2621 | See Also |
| 2622 | -------- |
| 2623 | dask.array.trace : equivalent function |
| 2624 | """ |
| 2625 | from dask.array.reductions import trace |
| 2626 | |
| 2627 | return trace(self, offset=offset, axis1=axis1, axis2=axis2, dtype=dtype) |
| 2628 | |
| 2629 | def prod(self, axis=None, dtype=None, keepdims=False, split_every=None, out=None): |
| 2630 | """Return the product of the array elements over the given axis |