bundles / numpy 2.4.3 / numpy / triu_indices_from
_ArrayFunctionDispatcher
numpy:triu_indices_from
Signature
def triu_indices_from ( arr , k = 0 ) Summary
Return the indices for the upper-triangle of arr.
Extended Summary
See triu_indices for full details.
Parameters
arr: ndarray, shape(N, N)The indices will be valid for square arrays.
k: int, optionalDiagonal offset (see triu for details).
Returns
triu_indices_from: tuple, shape(2) of ndarray, shape(N)Indices for the upper-triangle of
arr.
Examples
import numpy as np
✓a = np.arange(16).reshape(4, 4) a✓
triui = np.triu_indices_from(a) triui✓
a[triui]
✓np.triu_indices(a.shape[0])
✓triuim1 = np.triu_indices_from(a, k=1) a[triuim1]✓
See also
- tril_indices_from
- triu
- triu_indices
Aliases
-
numpy.triu_indices_from