dpnp.triu_indices
- dpnp.triu_indices(n, k=0, m=None)[source]
Return the indices for the upper-triangle of an (n, m) array.
- Parameters:
- Returns:
inds – The indices for the triangle. The returned tuple contains two arrays, each with the indices along one dimension of the array. Can be used to slice a ndarray of shape(n, n).
- Return type:
tuple, shape(2) of ndarrays, shape(n)